forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathblock-shift-repaint-expected.html
41 lines (38 loc) · 1.26 KB
/
block-shift-repaint-expected.html
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
35
36
37
38
39
40
41
<html>
<head>
<title>Test for http://bugs.webkit.org/show_bug.cgi?id=12079</title>
<style type="text/css">
div.playground { position: relative; width: 90px; height: 90px; }
.red { background-color: yellow; }
.blue { background-color: blue; }
.green { background-color: green; }
.zero { height: 0; width: 60px; }
.half { height: 30px; width: 60px; }
.full { height: 60px; width: 60px; }
</style>
</head>
<body>
<div class="playground">
<div id="div1" class="blue zero"></div>
<div class="red half"></div>
<div class="green half"></div>
</div>
<div class="playground">
<div><div id="top" class="blue zero"></div></div>
<div class="red half"></div>
<div class="green half"></div>
</div>
<div class="playground">
<div id="div2" class="half"></div>
<div class="green half"></div>
<div class="red half"></div>
</div>
<div class="playground" style="margin-top: 30px;">
<div style="width: 10px; margin: auto;">
<div id="innerDiv" style="height: 15px"></div>
</div>
<div class="half"></div>
<div class="half" style="border-top: solid yellow 8px;"></div>
</div>
</body>
</html>