Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 html{height:0} | |
| 4 .child {position:absolute;top:60px;width:100px; height: 100px; background-color: green; } | |
| 5 </style> | |
| 6 <script> | |
| 7 if (window.testRunner) | |
| 8 testRunner.setPrinting(); | |
| 9 </script> | |
| 10 <body style="height: 0px;"> | |
| 11 <p>crbug.com/618230: There should be a green square below. | |
| 12 <div style="position: fixed;"> | |
| 13 <div class="child"></div> | |
| 14 </div> | |
| 15 </body> | |
| OLD | NEW |