Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <svg xmlns="http://www.w3.org/2000/svg">
3 <mask id="m">
4 <text>
5 <tspan id="ts" />
6 </text>
7 </mask>
9 <rect width="600" height="400" mask="url(#m)"/>
11 <script>
12 window.addEventListener("load", function() {
13 document.getElementById("ts").style.overflow = "hidden";
14 }, false);
15 </script>
17 </svg>