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

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

Issue 675433002: Split fast/multicol/float-multicol into smaller tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add float-content-break. 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: 330px;
5 height: 200px;
6 border: 3px solid #bbb;
7 -webkit-column-gap: 10px;
8 -webkit-column-count: 2;
9 line-height: 20px;
10 }
11 .left, .right {
12 padding: 5px 5px;
13 text-align: center;
mstensho (USE GERRIT) 2014/10/27 11:04:58 Looks rather unnecessary.
andersr 2014/10/27 16:49:04 Done.
14 background-color: steelblue;
15 }
16 .float_content {
17 background-color: skyblue;
18 }
19 .left { float: left; }
20 .right { float: right; }
21 </style>
22
23 <p>There should be two floats: one left, one right. Both should wrap into the
24 second column. The lines <em>left6</em>, <em>left7</em>,
25 <em>right6</em>, <em>right7</em> (and their backgrounds) should appear
26 <em>entirely</em> in the second column.</p>
27 <div class="multicol">
28 First<br>
29 First<br>
30 First<br>
31 First<br>
32 <div class="left">
33 <span class="float_content">
34 left1<br>
35 left2<br>
36 left3<br>
37 left4<br>
38 left5<br>
39 left6<br>
40 left7<br>
41 </span>
42 </div>
43 <div class="right">
44 <span class="float_content">
45 right1<br>
46 right2<br>
47 right3<br>
48 right4<br>
49 right5<br>
50 right6<br>
51 right7<br>
52 </span>
53 </div>
54 First<br>
55 First<br>
56 First<br>
57 First<br>
58 First<br>
59 First<br>
60
61
62 Second<br>
63 Second<br>
64 Second<br>
65 Second<br>
66 Second<br>
67 Second<br>
68 Second<br>
69 Second<br>
70 Second<br>
71 Second<br>
72 </div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/multicol/float-break-expected.html ('k') | LayoutTests/fast/multicol/float-content-break-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698