Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-position/crashtests/inline-containing-block-dynamic-change-2.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
content {
filter: hue-rotate(90deg);
}
#a {
position: fixed;
}
</style>
<script>
function go() {
// Remove the filter so that content is no longer the absolute containing
// block.
document.querySelector("content").style.filter = "none";
}
</script>
<body onload="go()">
<content>
<table style="float:left;">
<tbody id="a"></tbody>
</table>
</content>
</body>