Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(466)

Side by Side Diff: LayoutTests/fast/css/negative-orphans-crash.html

Issue 108663009: orphans and widows should be positive integer. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed animations/interpolation/orphans-interpolation.html Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698