342120-1.xhtml (490B)
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> 2 <head> 3 4 <script> 5 6 function boom () 7 { 8 var p = document.getElementById("p"); 9 var s = document.getElementById("s"); 10 11 s.insertBefore(document.createElement("div"), p); 12 13 document.documentElement.removeAttribute("class"); 14 } 15 16 </script> 17 18 19 <style> 20 21 strong:first-letter { color: red; } 22 23 </style> 24 25 </head> 26 27 <body onload="setTimeout(boom, 30);"> 28 29 <div>,,, <strong id="s"><p id="p">1</p>2</strong> ...</div> 30 31 </body> 32 33 </html>