460012-1.html (282B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <style> 5 div:after { content: 'X'; border:1px solid red; } 6 div.foo:after { content: 'Y'; } 7 </style> 8 </head> 9 <body> 10 <div id="d"></div> 11 <script> 12 document.body.offsetTop; 13 document.getElementById("d").setAttribute("class", "foo"); 14 </script> 15 </body> 16 </html>