summaryrefslogtreecommitdiffstats
path: root/layout/svg/crashtests/1403656-1.html
blob: 996562d150372f7a228d7b03b7dc9e9dd30b5579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html class="filtered">
<style>
  .filtered {
    filter: url(#notsvg);
  }
  #notsvg {
    float: left;
    overflow: auto;
  }
</style>
<script>
function go() {
  const div = document.createElement('div')
  div.setAttribute('id', 'notsvg')
  document.documentElement.appendChild(div)
}
</script>
<body onload="go();" class="filtered">