Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / negative-orphans-crash.html
blobe407751c2ff59f0e6fe5c3b33d9ab29af95981e2
1 <html>
2 <head>
3 <style>
4 html {
5 orphans:-988;
6 widows: 435;
7 -webkit-columns:1in auto ;
8 width: 0;
10 </style>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
15 function onLoad()
17 document.body.offsetLeft;
18 document.body.innerHTML = 'PASS';
20 </script>
21 </head>
22 <body onload="onLoad()">
23 <!-- This test is for crbug.com/327725. Need some long text for reproducing crash.-->
24 <!-- Copied the following from W3C spec.-->
25 The 'orphans' property specifies the minimum number of lines in a block container 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>