blob: 5a05b801c8e96970f398012bed5061c46b0af4f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<text x="100" y="100" font-family="sans-serif">hello <tspan font-size="48px">there</tspan></text>
<script>
function f() {
document.getElementsByTagName("text")[0].style.dominantBaseline = "central";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", f, false);
</script>
</svg>
|