blob: 91d9e51709465a24fbf418f197d2c01fd4cf2789 (
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
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Containment Test: Reference file</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<style>
#scroller {
background: lightgreen;
overflow: scroll;
padding-bottom: 50px;
width: 100px;
height: 100px;
}
#content {
background: lightblue;
width: 50px;
height: 130px;
}
</style>
<div id=scroller>
<div id=content>
</div>
</div>
<p>This test passes if it has the same output as the reference.</p>
|