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

Side by Side Diff: LayoutTests/fast/multicol/vertical-lr/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 body {
4 -webkit-writing-mode: vertical-lr;
5 }
6 .columns {
7 width: 300px;
8 border: 5px solid black;
9 padding: 5px;
10 line-height: 20px;
11 }
12 .column1, .column2 {
13 float: left;
14 height: 50%;
15 }
16 .column1 {
17 width: 100%;
18 }
19 .inline_block {
20 display: inline-block;
21 border: 2px solid green;
22 }
23 </style>
24 <div class="columns">
25 <div class="column1"></div>
26 <div class="column2">
27 <div class="inline_block">
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 This should be in the second column.<br>
37 This should be in the second column.<br>
38 This should be in the second column.<br>
39 </div>
40 </div>
41 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698