873222.html (256B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 6 function boom() 7 { 8 var r = document.documentElement; 9 r.style.font = "170% fantasy"; 10 r.style.fontSynthesis = "none"; 11 r.getAttribute("style"); 12 } 13 14 </script> 15 </head> 16 <body onload="boom();"></body> 17 </html>