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

Side by Side Diff: LayoutTests/fast/multicol/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: 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> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 div.columns { 4 div.columns {
5 width: 200px; 5 width: 200px;
6 -webkit-columns: 2; 6 -webkit-columns: 2;
7 -webkit-column-gap: 0; 7 -webkit-column-gap: 0;
8 -webkit-column-fill: auto;
9 columns: 2;
10 column-gap: 0;
11 column-fill: auto;
8 outline: 1px solid blue; 12 outline: 1px solid blue;
9 font-family: ahem; 13 font-family: ahem;
10 font-size: 10px; 14 font-size: 10px;
11 margin: 5px; 15 margin: 5px;
12 overflow: hidden; 16 overflow: hidden;
13 } 17 }
14 18
15 div.float { 19 div.float {
16 float: left; 20 float: left;
17 width: 50px; 21 width: 50px;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 failures++ 99 failures++
96 } 100 }
97 101
98 if (window.testRunner) { 102 if (window.testRunner) {
99 testRunner.dumpAsText(); 103 testRunner.dumpAsText();
100 document.getElementById("tests").style.display = "none"; 104 document.getElementById("tests").style.display = "none";
101 } 105 }
102 106
103 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS"; 107 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS";
104 </script> 108 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698