blob: b30f32d9c3d4a1ab037e6ca5cea92c958f340637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>Dynamic change to paint containment (reference)</title>
<style>
#container {
width: 100px;
height: 100px;
background: green;
contain: none;
}
#overflowing {
width: 400px;
height: 100px;
}
.square {
display: inline-block;
width: 50px;
height: 50px;
margin: 5px;
}
.green {
background: green;
}
</style>
<body>
<p>PASS if you see <em>two</em> green squares.</p>
<div id="container">
<div id="overflowing"><div class="square"></div><div class="square"></div><div class="red square"></div></div>
</div>
</body>
</html>
|