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

Side by Side Diff: LayoutTests/fast/multicol/vertical-lr/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: 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
(Empty)
1 <!DOCTYPE html>
2 <style>
3 body {
4 -webkit-writing-mode: vertical-lr;
5 }
6 .float {
7 float: left;
8 width: 100px;
9 height: 200px;
10 background-color: lime;
11 }
12 .multicol {
13 height: 400px;
14 border: 10px solid black;
15 line-height: 20px;
16 display: inline-block;
17 vertical-align: bottom;
18 }
19 .multicol > div {
20 float: left;
21 height: 200px;
22 }
23 </style>
24 <div class="float">
25 </div>
26 <div class="multicol">
27 <div>
28 First column<br>
29 First column<br>
30 First column<br>
31 First column<br>
32 First column<br>
33 </div>
34 <div>
35 Second column<br>
36 Second column<br>
37 Second column<br>
38 Second column<br>
39 Second column<br>
40 </div>
41 </div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/vertical-lr/float-avoidance.html ('k') | LayoutTests/fast/multicol/vertical-rl/float-avoidance.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698