Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/testing/web-platform/tests/svg/text/reftests/xml-lang-attribute-dynamic.svg
<?xml version="1.0" encoding="utf-8"?>
class="reftest-wait">
<metadata>
<title>Update of lang attribute should recalculate style</title>
<h:link rel="match" href="lang-attribute-dynamic-ref.svg"/>
</metadata>
<style>
tspan:lang(ja) { fill: lime; }
</style>
<text>
<tspan x="10" y="100" font-size="90">Quick</tspan>
<tspan x="10" y="200" font-size="90">Brown</tspan>
<tspan x="10" y="300" font-size="90">Fox</tspan>
</text>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.querySelectorAll('tspan')[0].setAttributeNS(
'http://www.w3.org/XML/1998/namespace', 'xml:lang', 'ja');
document.documentElement.classList.remove('reftest-wait');
});
});
</script>
</svg>