OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <style> |
| 4 html { |
| 5 orphans:-988; |
| 6 widows: 435; |
| 7 -webkit-columns:1in auto ; |
| 8 width: 0; |
| 9 } |
| 10 </style> |
| 11 <script> |
| 12 if (window.testRunner) |
| 13 testRunner.dumpAsText(); |
| 14 |
| 15 function onLoad() |
| 16 { |
| 17 document.body.offsetLeft; |
| 18 document.body.innerHTML = 'PASS'; |
| 19 } |
| 20 </script> |
| 21 </head> |
| 22 <body onload="onLoad()"> |
| 23 <!-- This test is for crbug.com/327725. Need some long text for reproducing cras
h.--> |
| 24 <!-- Copied the following from W3C spec.--> |
| 25 The 'orphans' property specifies the minimum number of lines in a block containe
r that must be left at the bottom of a page. The 'widows' property specifies the
minimum number of lines in a block container that must be left at the top of a
page. Examples of how they are used to control page breaks are given below. |
| 26 </body> |
| 27 </html> |
OLD | NEW |