1032613-2.html (320B)
1 <!DOCTYPE html> 2 <html> 3 <script> 4 function tweak() { 5 document.getElementById("c").style.textShadow = "3px 3px gray"; 6 } 7 </script> 8 <body onload="tweak()"> 9 <div id="c">hello 10 <svg height="0"> 11 <clipPath> 12 <path d=""/> 13 </clipPath> 14 </svg> 15 </div> 16 </body> 17 </html>