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

Side by Side Diff: LayoutTests/fast/multicol/vertical-lr/float-avoidance.html

Issue 643923003: Convert fast/multicol/float-avoidance to reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use float instead of inline-block. Remove test in newmulticol/. Created 6 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 <body style="-webkit-writing-mode:vertical-lr"> 1 <!DOCTYPE html>
2 <div style="float:left; width:100px; height:200px; background-color:lime"></div > 2 <style>
3 <div style="height:415px; -moz-column-width:200px; -webkit-column-width:200px ; 3 body {
4 text-align:justify; border:10px solid black"> 4 -webkit-writing-mode: vertical-lr;
5 <p>This technology preview of our award winning next generation browser 5 }
6 is a sign of things to come from Mozilla. Powerful yet easy to use. This 6 .float {
7 maintenance release provides a few updates based on user feedback - includi ng 7 float: left;
8 changes to the Extension System and icon improvements. 8 width: 100px;
9 height: 200px;
10 background-color: lime;
11 }
12 .multicol {
13 height: 400px;
14 -webkit-column-width: 200px;
15 -webkit-column-gap: 0;
16 border: 10px solid black;
17 line-height: 20px;
18 }
19 </style>
20 <div class="float">
21 </div>
22 <div class="multicol">
23 First column<br>
24 First column<br>
25 First column<br>
26 First column<br>
27 First column<br>
28 Second column<br>
29 Second column<br>
30 Second column<br>
31 Second column<br>
32 Second column<br>
33 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698