Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/struct/crashtests/chrome-bug-425405650.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
#el0 {
display: block;
}
#el1 {
position: absolute;
}
.c7 {
position: absolute;
}
</style>
<svg id="el0"></svg>
<svg id="el1">
<use href="#el0"></use>
</svg>
<script>
document.body.offsetTop;
document.getElementById('el0').setAttribute('class', 'c7');
document.body.offsetTop;
</script>