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

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

Powered by Google App Engine
This is Rietveld 408576698