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/contain-inline-size-removed.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Containment Test: Remove inline-size from style.contain</title>
<meta name="assert" content="After removing inline-size from style.contain, the element should trigger layout">
<link rel="match" href="reference/pass_if_pass_below_clipped.html">
<style>
</style>
<p>Test passes if there is the word "PASS" below.</p>
<div id="container" style="contain: inline-size; width:fit-content; overflow: hidden;"><span>PASS</span></div>
<script>
    window.requestAnimationFrame(() => {
        document.getElementById("container").style.contain = "";
    });
</script>