Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/layout/svg-intrinsic-size-invalidation.html - WPT Dashboard Interop Dashboard
<!doctype html>
<link rel="match" href="svg-intrinsic-size-invalidation-ref.html">
<style>
#avatar {
width: 128px;
display: block;
}
#container {
width: max-content;
border: 10px solid green;
}
</style>
<div id="ancestor">
<div id="container">
<rect height="100%" width="100%" fill="blue"></rect>
</svg>
</div>
</div>
<script>
onload = function() {
let avatar = document.getElementById("avatar");
let ancestor = document.getElementById("ancestor");
avatar.getBoundingClientRect();
avatar.style.maxWidth = "100px";
ancestor.style.padding = "10px";
}
</script>