Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <div style="float:left; width:200px; height:100px; background-color:lime"></div > | 1 <!DOCTYPE html> |
| 2 <div style="width:415px; -moz-column-width:200px; -webkit-column-width:200px; | 2 <style> |
| 3 text-align:justify; border:10px solid black"> | 3 .float { |
|
mstensho (USE GERRIT)
2014/10/20 20:35:02
This test is so simple that I have a hard time ant
andersr
2014/10/21 08:58:03
Unless this affects the multicol container's abili
mstensho (USE GERRIT)
2014/10/21 09:11:42
There's no test for multicol there, but that could
| |
| 4 <p>This technology preview of our award winning next generation browser | 4 float: left; |
| 5 is a sign of things to come from Mozilla. Powerful yet easy to use. This | 5 width: 200px; |
| 6 maintenance release provides a few updates based on user feedback - includi ng | 6 height: 100px; |
| 7 changes to the Extension System and icon improvements. | 7 background-color: lime; |
| 8 } | |
| 9 .multicol { | |
| 10 width: 400px; | |
| 11 -webkit-column-width: 200px; | |
| 12 -moz-column-width: 200px; | |
|
mstensho (USE GERRIT)
2014/10/20 20:35:02
You can just drop the -moz- stuff.
andersr
2014/10/21 08:58:03
Done.
| |
| 13 -webkit-column-gap: 0; | |
| 14 -moz-column-gap: 0; | |
| 15 border: 10px solid black; | |
| 16 line-height: 20px; | |
| 17 } | |
| 18 </style> | |
| 19 <div class="float"> | |
| 20 </div> | |
| 21 <div class="multicol"> | |
| 22 First column<br> | |
| 23 First column<br> | |
| 24 First column<br> | |
| 25 First column<br> | |
| 26 First column<br> | |
| 27 Second column<br> | |
| 28 Second column<br> | |
| 29 Second column<br> | |
| 30 Second column<br> | |
| 31 Second column<br> | |
| 32 </div> | |
| OLD | NEW |