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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/vertical-rl/float-truncation.html

Issue 1909233002: Spec-compliant parsing and initial values for 'orphans' and 'widows'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some unit tests had non-conformant widphans assumptions too. Created 4 years, 8 months 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
OLDNEW
1 <html style="-webkit-writing-mode:horizontal-tb;"> 1 <html style="-webkit-writing-mode:horizontal-tb;">
2 <head> 2 <head>
3 <style> 3 <style>
4 div.columns { 4 div.columns {
5 height: 200px; 5 height: 200px;
6 -webkit-columns: 2; 6 -webkit-columns: 2;
7 -webkit-column-gap: 0; 7 -webkit-column-gap: 0;
8 columns: 2; 8 columns: 2;
9 column-gap: 0; 9 column-gap: 0;
10 column-fill: auto; 10 column-fill: auto;
11 outline: 1px solid blue; 11 outline: 1px solid blue;
12 font-family: Ahem; 12 font-family: Ahem;
13 font-size: 10px; 13 font-size: 10px;
14 margin: 5px; 14 margin: 5px;
15 overflow: hidden; 15 overflow: hidden;
16 orphans: 1;
17 widows: 1;
16 } 18 }
17 19
18 div.float { 20 div.float {
19 float: left; 21 float: left;
20 height: 51px; 22 height: 51px;
21 -webkit-margin-before: 5px; 23 -webkit-margin-before: 5px;
22 color: silver; 24 color: silver;
23 } 25 }
24 </style> 26 </style>
25 </head> 27 </head>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 } 102 }
101 } 103 }
102 104
103 if (window.testRunner) { 105 if (window.testRunner) {
104 testRunner.dumpAsText(); 106 testRunner.dumpAsText();
105 document.getElementById("tests").style.display = "none"; 107 document.getElementById("tests").style.display = "none";
106 } 108 }
107 109
108 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS"; 110 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS";
109 </script> 111 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698