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

Side by Side Diff: LayoutTests/fast/block/positioning/offsetLeft-offsetTop-multicolumn.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #multicol { 5 #multicol {
6 -moz-column-width: 100px;
6 -webkit-column-width: 100px; 7 -webkit-column-width: 100px;
7 -moz-column-width: 100px;
8 column-width: 100px; 8 column-width: 100px;
9 column-fill: auto;
9 height: 200px; 10 height: 200px;
10 } 11 }
11 12
12 span { 13 span {
13 display: inline-block; 14 display: inline-block;
14 height: 20px; 15 height: 20px;
15 padding: 2px; 16 padding: 2px;
16 background: red; 17 background: red;
17 } 18 }
18 19
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 cover.setAttribute("style", "background: green; " + 124 cover.setAttribute("style", "background: green; " +
124 "z-index: 10; " + 125 "z-index: 10; " +
125 "position: absolute; " + 126 "position: absolute; " +
126 "left: " + item.offsetLeft + "px; " + 127 "left: " + item.offsetLeft + "px; " +
127 "top: " + item.offsetTop + "px;"); 128 "top: " + item.offsetTop + "px;");
128 body.appendChild(cover); 129 body.appendChild(cover);
129 } 130 }
130 </script> 131 </script>
131 </body> 132 </body>
132 </html> 133 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698