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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/multicol/nested-short-first-row-extra-tall-line.html

Issue 1472053002: Jump to the next outer column when an inner column is too short. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code review Created 5 years 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 <script src="../../resources/check-layout.js"></script>
3 <p>Below, the two words "OK" and "WIN" should be seen on two separate lines. Let ter spacing should
4 be large. The line with "OK" should be southwest of "WIN". Between the two w ords you should see
5 a hotpink rectangle.</p>
6 <div id="outer" style="position:relative; -webkit-columns:3; -webkit-column-gap: 0; font-size:16px; width:12em; column-fill:auto; height:4.5em; line-height:2em; text-align:center;">
7 <br>
8 <div style="-webkit-columns:4; -webkit-column-gap:0;">
9 <div data-offset-x="0" data-offset-y="32">O</div>
10 <div data-offset-x="16" data-offset-y="32">K</div>
11 <div data-offset-x="64" data-offset-y="0" style="font-size:1.8em; line-h eight:2em; background:hotpink;">
12 <br>
13 </div>
14 <div data-offset-x="80" data-offset-y="0">W</div>
15 <div data-offset-x="96" data-offset-y="0">I</div>
16 <div data-offset-x="112" data-offset-y="0">N</div>
17 </div>
18 </div>
19 <script>
20 checkLayout("#outer");
21 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698