summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-inline-size-removed.html
blob: 6e82f8c760edb5a8bc61e5b88517443069618519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>CSS Containment Test: Remove inline-size from style.contain</title>
<link rel="help" href="https://drafts.csswg.org/css-contain/#contain-property">
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#containment-inline-size">
<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>