369176-1.html (440B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 5 <script> 6 7 function boom() 8 { 9 document.getElementById("f").className = 'q'; 10 document.documentElement.removeAttribute("class"); 11 } 12 13 </script> 14 15 <style> 16 17 body { 18 width: 10em; 19 } 20 21 #f:after { 22 content: "TTT"; 23 } 24 25 </style> 26 27 </head> 28 29 <body onload="setTimeout(boom, 0);"> 30 31 <span id="f">foo foo foo foo foo foo foo foo foo foo<span style="display: block"></span></span> 32 33 34 </div> 35 36 </body> 37 </html>