layout/generic/crashtests/382131-1.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:5415e541c178
1 <html class="reftest-wait">
2 <head>
3 <script>
4
5 function crash()
6 {
7 try {
8 window.getSelection().containsNode([], false);
9 } catch(e) { }
10
11 try {
12 window.getSelection().containsNode(null, false);
13 } catch(e) { }
14
15 document.documentElement.removeAttribute("class");
16 }
17
18 </script>
19 </head>
20
21 <body onload="setTimeout(crash, 10);">
22 Foo
23 </body>
24
25 </html>

mercurial