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

Side by Side Diff: LayoutTests/fast/multicol/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 <div style="width:750px; height:300px; -webkit-column-count:2; -webkit-column-ru le:2px solid grey; column-count:2; column-rule:2px solid grey; column-fill:auto; border:5px solid black; padding:5px; "> 1 <!DOCTYPE html>
2 <div style="height:250px"></div> 2 <style>
3 <div style="display:inline-block; border:2px solid green"> 3 .columns {
4 All of this text should be in the second column.<br> 4 height: 300px;
5 All of this text should be in the second column.<br> 5 -webkit-column-count: 2;
6 All of this text should be in the second column.<br> 6 -webkit-column-gap: 0;
7 All of this text should be in the second column.<br> 7 column-fill: auto;
8 All of this text should be in the second column.<br> 8 border: 5px solid black;
9 All of this text should be in the second column.<br> 9 padding: 5px;
10 All of this text should be in the second column.<br> 10 line-height: 20px;
11 All of this text should be in the second column.<br> 11 }
mstensho (USE GERRIT) 2014/11/04 21:36:58 No issue, but note that dashes in class names is a
12 All of this text should be in the second column.<br> 12 .inline_block {
13 All of this text should be in the second column.<br> 13 display: inline-block;
14 All of this text should be in the second column.<br> 14 border: 2px solid green;
15 }
16 </style>
17 <div class="columns">
18 <div style="height: 250px;"></div>
19 <div class="inline_block">
20 This should be in the second column.<br>
21 This should be in the second column.<br>
22 This should be in the second column.<br>
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 </div>
15 </div> 32 </div>
16
17 </div>
18
19
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/multicol/unsplittable-inline-block-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698