Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/crashtests/contain-nested-crash-004.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
body, fieldset { contain: strict; }
</style>
<script>
function crash() {
document.body.offsetTop;
document.body.appendChild(document.createElement("fieldset"));
}
</script>
<body onload="crash()">