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

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

Issue 643923003: Convert fast/multicol/float-avoidance to reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .float {
4 float: left;
5 width: 200px;
6 height: 100px;
7 background-color: lime;
8 }
9 .multicol {
10 width: 400px;
11 border: 10px solid black;
12 line-height: 20px;
13 display: inline-block;
14 }
15 .multicol > div {
16 display: inline-block;
mstensho (USE GERRIT) 2014/10/20 20:35:02 Can use float:left instead of display:inline-block
andersr 2014/10/21 08:58:03 Done.
17 width: 200px;
18 }
19 </style>
20 <div class="float">
21 </div>
22 <div class="multicol">
23 <div>
24 First column<br>
25 First column<br>
26 First column<br>
27 First column<br>
28 First column<br>
29 </div><div>
30 Second column<br>
31 Second column<br>
32 Second column<br>
33 Second column<br>
34 Second column<br>
35 </div>
36 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698