1
0
Fork 0
firefox/testing/web-platform/tests/css/css-contain/contain-paint-dynamic-002-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

34 lines
658 B
HTML

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>Dynamic change to paint containment (reference)</title>
<style>
#container {
width: 100px;
height: 100px;
background: green;
contain: paint;
}
#overflowing {
width: 400px;
height: 100px;
}
.square {
display: inline-block;
width: 50px;
height: 50px;
margin: 5px;
}
.red {
background: red;
}
</style>
<body>
<p>PASS if you see a green square and no red.</p>
<div id="container">
<div id="overflowing"><div class="square"></div><div class="square"></div><div class="red square"></div></div>
</div>
</body>
</html>