gfx/tests/crashtests/394246-2.html

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:e48a5db0b56d
1 <html class="reftest-wait">
2 <head>
3 <script>
4 function boom()
5 {
6 var div = document.getElementById("div");
7 div.innerHTML = div.innerHTML.slice(1);
8 setTimeout(c, 30);
9 }
10
11 function c()
12 {
13 div.innerHTML = div.innerHTML.slice(1);
14 document.documentElement.removeAttribute("class");
15 }
16 </script>
17 </head>
18 <body onload="boom();">
19
20 <div id="div">t
21 &#769;</div>
22
23 </body></html>

mercurial