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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/vertical-lr/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:vertical-lr"> 1 <html style="-webkit-writing-mode:vertical-lr">
2 <style> 2 <style>
3 div.columns { 3 div.columns {
4 -webkit-columns: 2; 4 -webkit-columns: 2;
5 -webkit-column-gap: 0; 5 -webkit-column-gap: 0;
6 columns: 2; 6 columns: 2;
7 column-gap: 0; 7 column-gap: 0;
8 column-fill: auto; 8 column-fill: auto;
9 height: 200px; 9 height: 200px;
10 outline: 1px solid blue; 10 outline: 1px solid blue;
11 font-family: Ahem; 11 font-family: Ahem;
12 font-size: 10px; 12 font-size: 10px;
13 margin: 5px; 13 margin: 5px;
14 overflow: hidden; 14 overflow: hidden;
15 orphans: 1;
16 widows: 1;
15 } 17 }
16 18
17 div.float { 19 div.float {
18 float: left; 20 float: left;
19 height: 51px; 21 height: 51px;
20 -webkit-margin-before: 5px; 22 -webkit-margin-before: 5px;
21 color: silver; 23 color: silver;
22 } 24 }
23 </style> 25 </style>
24 <div id="tests"> 26 <div id="tests">
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 99 }
98 } 100 }
99 101
100 if (window.testRunner) { 102 if (window.testRunner) {
101 testRunner.dumpAsText(); 103 testRunner.dumpAsText();
102 document.getElementById("tests").style.display = "none"; 104 document.getElementById("tests").style.display = "none";
103 } 105 }
104 106
105 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS"; 107 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS";
106 </script> 108 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698