822766-1.html (492B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 @keyframes togreen { 7 100% { 8 color: green; 9 } 10 } 11 12 .a:after { 13 animation-name: togreen; 14 animation-duration: 10s; 15 } 16 17 </style> 18 <script> 19 20 function boom() 21 { 22 document.documentElement.setAttribute("class", "a"); 23 document.documentElement.offsetHeight; 24 document.documentElement.appendChild(document.createElement("span")); 25 document.documentElement.removeAttribute("class"); 26 } 27 28 </script> 29 </head> 30 <body onload="boom();"></body> 31 </html>