Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head>
4 <script>
6 function boom ()
7 {
8 var p = document.getElementById("p");
9 var s = document.getElementById("s");
11 s.insertBefore(document.createElement("div"), p);
13 document.documentElement.removeAttribute("class");
14 }
16 </script>
19 <style>
21 strong:first-letter { color: red; }
23 </style>
25 </head>
27 <body onload="setTimeout(boom, 30);">
29 <div>,,, <strong id="s"><p id="p">1</p>2</strong> ...</div>
31 </body>
33 </html>