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

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

Issue 675433002: Split fast/multicol/float-multicol into smaller tests. (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 .multicol {
4 width: 480px;
5 height: 200px;
6 border: 3px solid black;
7 -webkit-column-gap: 0;
8 -webkit-column-width: 160px;
mstensho (USE GERRIT) 2014/10/23 08:31:14 ditto. Suggest using -webkit-column{s,-count} inst
andersr 2014/10/24 09:40:07 Done.
9 line-height: 20px;
10 }
11 .float {
12 padding: 10px;
13 background-color: skyblue;
14 }
15 .left { float: left; }
16 .right { float: right; }
17 </style>
18
19 <p>There should be six blue floats, one near each edge of each column.</p>
mstensho (USE GERRIT) 2014/10/23 08:31:14 I think we need to express the pass condition in a
andersr 2014/10/24 09:40:08 Rewritten.
20 <div class="multicol">
21 First<br>
22 First<br>
23 First<br>
24 First<br>
25 <div class="float left">L1</div>
26 <div class="float right">R1</div>
27 First<br>
28 First<br>
29 First<br>
30 First<br>
31 First<br>
32 First<br>
33
34 <div class="float left">L2</div>
35 <div class="float right">R2</div>
36 Second<br>
37 Second<br>
38 Second<br>
39 Second<br>
40 Second<br>
41 Second<br>
42 Second<br>
43 Second<br>
44 Second<br>
45 Second<br>
46
47 Third<br>
48 Third<br>
49 Third<br>
50 Third<br>
51 Third<br>
52 Third<br>
53 Third<br>
54 Third<br>
55 <div class="float left">L3</div>
56 <div class="float right">R3</div>
57 Third<br>
58 Third<br>
59 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698