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/multicol/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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/float-avoidance-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 {
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 -webkit-column-gap: 0;
13 border: 10px solid black;
14 line-height: 20px;
15 }
16 </style>
17 <div class="float">
18 </div>
19 <div class="multicol">
20 First column<br>
21 First column<br>
22 First column<br>
23 First column<br>
24 First column<br>
25 Second column<br>
26 Second column<br>
27 Second column<br>
28 Second column<br>
29 Second column<br>
30 </div>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/float-avoidance-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698