gfx/tests/crashtests/394384-1.html

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:3f69742649bb
1 <html class="reftest-wait">
2 <head>
3 <script>
4
5 function boom()
6 {
7 var t1 = document.createTextNode(String.fromCharCode(0x2011) + String.fromCharCode(13));
8 document.body.appendChild(t1);
9
10 setTimeout(boom2, 30);
11 }
12
13 function boom2()
14 {
15 var letterA = document.createTextNode(String.fromCharCode(65));
16 document.body.appendChild(letterA);
17
18 document.documentElement.removeAttribute("class");
19 }
20
21 </script>
22 </head>
23
24 <body onload="setTimeout(boom, 50);"></body>
25
26 </html>

mercurial