OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 html{height:100%} | |
4 .child {position:absolute;top:-600px;width:100px; height: 100px; background-colo r: red; } | |
5 </style> | |
6 <script> | |
7 if (window.testRunner) | |
8 testRunner.setPrinting(); | |
9 </script> | |
10 <p>crbug.com/617533: There should be no red square below. | |
11 <div style="position: fixed;"> | |
12 <div class="child"></div> | |
13 </div> | |
14 | |
OLD | NEW |