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

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

Issue 25687002: Add support for the column-fill property. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Put changes to problematic files (for the bots) back in. Created 7 years, 2 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;
9 column-gap: 0;
10 column-fill: auto;
8 outline: 1px solid blue; 11 outline: 1px solid blue;
9 font-family: ahem; 12 font-family: ahem;
10 font-size: 10px; 13 font-size: 10px;
11 margin: 5px; 14 margin: 5px;
12 overflow: hidden; 15 overflow: hidden;
13 } 16 }
14 17
15 div.float { 18 div.float {
16 float: left; 19 float: left;
17 height: 50px; 20 height: 50px;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 100 }
98 } 101 }
99 102
100 if (window.testRunner) { 103 if (window.testRunner) {
101 testRunner.dumpAsText(); 104 testRunner.dumpAsText();
102 document.getElementById("tests").style.display = "none"; 105 document.getElementById("tests").style.display = "none";
103 } 106 }
104 107
105 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS"; 108 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS";
106 </script> 109 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698