OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 #container { | 3 #container { |
4 position: fixed; | 4 position: fixed; |
5 top: 200px; | 5 top: 200px; |
6 left: 100px; | 6 left: 100px; |
7 } | 7 } |
8 | 8 |
9 #block { | 9 #block { |
10 position: relative; | 10 position: relative; |
11 width: 100px; | 11 width: 100px; |
12 height: 100px; | 12 height: 100px; |
13 top: 50px; | |
Xianzhu
2015/08/25 18:35:59
This is added to avoid it from overlapping with #c
chrishtr
2015/08/25 18:49:03
Please add a test instead of modifying this one. O
Xianzhu
2015/08/25 18:52:40
Actually this fixes coverage of the original test
| |
13 background-color: green; | 14 background-color: green; |
14 } | 15 } |
15 | 16 |
16 #composited-non-stacking-context { | 17 #composited-non-stacking-context { |
18 width: 20px; | |
19 height: 20px; | |
20 background-color: white; | |
Xianzhu
2015/08/25 18:35:59
Note: these properties are added to ensure the div
| |
17 backface-visibility: hidden; | 21 backface-visibility: hidden; |
18 } | 22 } |
19 </style> | 23 </style> |
20 <div id="container"> | 24 <div id="container"> |
21 <div id="composited-non-stacking-context"> | 25 <div id="composited-non-stacking-context"> |
22 <div id="block"></div> | 26 <div id="block"></div> |
23 </div> | 27 </div> |
24 </div> | 28 </div> |
25 This test passes if the green block stays at the same place after repaint. | 29 This test passes if the green block stays at the same place after repaint. |
26 <script src="../../resources/run-after-layout-and-paint.js"></script> | 30 <script src="../../resources/run-after-layout-and-paint.js"></script> |
27 <script> | 31 <script> |
28 runAfterLayoutAndPaint(function() { | 32 runAfterLayoutAndPaint(function() { |
29 document.getElementById("container").style.top = "100px"; | 33 document.getElementById("container").style.top = "100px"; |
30 document.getElementById("block").style.top = "100px"; | 34 document.getElementById("block").style.top = "100px"; |
31 }, true); | 35 }, true); |
32 </script> | 36 </script> |
OLD | NEW |