summaryrefslogtreecommitdiffstats
path: root/layout/svg/crashtests/767535-1.xhtml
blob: 2a923fcc6d49127bc18b87c0910ae851d403fda3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html xmlns="http://www.w3.org/1999/xhtml" style="columns: 2 auto;" class="reftest-wait">
  <head>
    <script>

function test() { 
  var r = document.documentElement; 
  document.removeChild(r); 
  document.appendChild(r); 
  document.documentElement.removeAttribute("class");
}

    </script>
  </head>
  <body style="filter:url(#f);" onload="setTimeout(test, 0);">
    <div>
    </div>
    <svg xmlns="http://www.w3.org/2000/svg">
      <filter id="f"/>
    </svg>
  </body>
</html>