951904-1.html (803B)
1 <body onload="go()"> 2 <svg> 3 <switch> 4 <text id="a">Bonjour</text> 5 <text id="b">Hello</text> 6 <a><text id="c">Hello</text></a> 7 <g> 8 <mask> 9 <text>Lundi</text> 10 </mask> 11 </g> 12 <switch> 13 <text id="d">Au revoir</text> 14 <g> 15 <mask> 16 <text>Mercredi</text> 17 </mask> 18 </g> 19 <text id="e">Goodbye</text> 20 <a><text id="f">Goodbye</text></a> 21 </switch> 22 </switch> 23 </svg> 24 <svg> 25 <switch> 26 <mask> 27 <text id="g">Vendredi</text> 28 </mask> 29 <a></a> 30 </switch> 31 </svg> 32 </body> 33 <script> 34 function go() { 35 a.getComputedTextLength(); 36 b.getComputedTextLength(); 37 c.getComputedTextLength(); 38 d.getComputedTextLength(); 39 e.getComputedTextLength(); 40 f.getComputedTextLength(); 41 g.getComputedTextLength(); 42 } 43 </script>