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

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: 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> 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 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 width: 50px; 20 width: 50px;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 failures++ 98 failures++
96 } 99 }
97 100
98 if (window.testRunner) { 101 if (window.testRunner) {
99 testRunner.dumpAsText(); 102 testRunner.dumpAsText();
100 document.getElementById("tests").style.display = "none"; 103 document.getElementById("tests").style.display = "none";
101 } 104 }
102 105
103 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS"; 106 document.getElementById("result").innerText = failures ? "FAIL: " + failures + " cases failed" : "PASS";
104 </script> 107 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/float-paginate-empty-lines.html ('k') | LayoutTests/fast/multicol/hit-test-above-or-below.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698