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="tspan" />
6 </text>
7 </mask>
9 <rect width="600" height="400" mask="url(#m)"/>
11 <script>
13 window.addEventListener("load", function() {
14 document.getElementById("tspan").style.dominantBaseline = "alphabetic";
15 }, false);
17 </script>
19 </svg>