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

Side by Side Diff: LayoutTests/fast/multicol/vertical-rl/unsplittable-inline-block.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
1 <body style="-webkit-writing-mode:vertical-rl"> 1 <!DOCTYPE html>
2 <div style="height:750px; -webkit-column-count:2; -webkit-column-rule:2px solid grey; column-count:2; column-rule:2px solid grey; border:5px solid black; paddin g:5px;width:300px; "> 2 <style>
3 <div style="width:250px"></div> 3 body {
4 <div style="display:inline-block; border:2px solid green"> 4 -webkit-writing-mode: vertical-rl;
5 All of this text should be in the second column.<br> 5 }
6 All of this text should be in the second column.<br> 6 .columns {
7 All of this text should be in the second column.<br> 7 width: 300px;
8 All of this text should be in the second column.<br> 8 -webkit-column-count: 2;
9 All of this text should be in the second column.<br> 9 -webkit-column-gap: 0;
10 All of this text should be in the second column.<br> 10 column-fill: auto;
11 All of this text should be in the second column.<br> 11 border: 5px solid black;
12 All of this text should be in the second column.<br> 12 padding: 5px;
13 All of this text should be in the second column.<br> 13 line-height: 20px;
14 All of this text should be in the second column.<br> 14 }
15 All of this text should be in the second column.<br> 15 .inline_block {
16 display: inline-block;
17 border: 2px solid green;
18 }
19 </style>
20 <div class="columns">
21 <div style="width: 250px;"></div>
22 <div class="inline_block">
23 This should be in the second column.<br>
24 This should be in the second column.<br>
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 </div>
16 </div> 35 </div>
17
18 </div>
19
20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698