Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 }
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();">
20 <div id="div">t
21 ́</div>
23 </body></html>