mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
effb2dcdf7
--HG-- extra : rebase_source : 4dc4e59cf423f6ffb02826fb2f357edda85c048c
15 lines
416 B
XML
15 lines
416 B
XML
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="r" class="reftest-wait">
|
|
<text id="t"><textPath xlink:href="#r">x</textPath>1</text>
|
|
<script>
|
|
|
|
window.addEventListener("load", function() {
|
|
setTimeout(function() {
|
|
document.getElementById("t").lastChild.data = "2";
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
}, 200);
|
|
}, false);
|
|
|
|
</script>
|
|
</svg>
|