1072758.html (534B)
1 <style> 2 #x9 { 3 display:none; 4 } 5 </style> 6 7 <body onload="go()"> 8 <svg> 9 <path id="a"></path> 10 11 <mask id="m"> 12 <text id="y"> 13 <tspan id="x1"></tspan> 14 <textPath id="x2"></textPath> 15 <a id="x3">Hello</a> 16 <tspan><tspan id="x4"></tspan></tspan> 17 <tspan id="x5"></tspan> 18 </text> 19 </mask> 20 21 <rect width="600" height="400" mask="url(#m)"/> 22 </svg> 23 </body> 24 25 <script> 26 27 function go() { 28 x1.style.display = "none"; 29 x2.style.display = "none"; 30 x3.style.display = "none"; 31 x4.style.display = "none"; 32 x5.id = "x9"; 33 }; 34 35 </script>