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

Side by Side Diff: LayoutTests/fast/multicol/unsplittable-inline-block-expected.html

Issue 698203003: Convert fast/multicol/unsplittable-inline-block to reftest. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 .columns {
4 height: 300px;
5 border: 5px solid black;
6 padding: 5px;
7 line-height: 20px;
8 }
9 .column1, .column2 {
10 float: left;
11 width: 50%;
12 }
13 .column1 {
14 height: 100%;
15 }
16 .inline_block {
17 display: inline-block;
18 border: 2px solid green;
19 }
20 </style>
21 <div class="columns">
22 <div class="column1"></div>
23 <div class="column2">
24 <div class="inline_block">
25 This should be in the second column.<br>
26 This should be in the second column.<br>
27 This should be in the second column.<br>
28 This should be in the second column.<br>
29 This should be in the second column.<br>
30 This should be in the second column.<br>
31 This should be in the second column.<br>
32 This should be in the second column.<br>
33 This should be in the second column.<br>
34 This should be in the second column.<br>
35 This should be in the second column.<br>
36 </div>
37 </div>
38 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698