Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/crashtests/chrome-bug-452651700.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<svg>
<circle id="a" cx="120" cy="120" r="15" style="transition:fill 1s" />
<use id="use" style="fill:red;transition:fill 1s" href="#a" x="30" y="0"/>
</svg>
<script>
document.body.offsetTop;
use.style.fill = "green";
</script>