Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/text/reftests/transform-dynamic-change-root.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="transform-dynamic-change-root-ref.html">
<style>
:root { scale: 1 5; }
</style>
<body>
<svg><text y=30>Text</text></svg>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.styleSheets[0].removeRule(0);
document.documentElement.classList.remove('reftest-wait');
});
});
</script>
</body>
</html>