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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/pagination/multicol.html

Issue 1503003002: Paginated containers are opaque to enclosing fragmentation contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase master 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>Test that a multicol container inside a paged container is fragmented correct ly.</p>
4 <p>Below there should be a blue square above a papayawhip square above some spac ing above a horizontal scrollbar.
5 There should be no red.</p>
6 <div id="pagedContainer" style="position:relative; overflow-y:-webkit-paged-x; -webkit-column-gap:0; line-height:50px; width:50px; height:140px;">
7 <div style="-webkit-columns:2; -webkit-column-gap:0;">
8 <div data-offset-x="0" data-offset-y="0" style="background:blue;"><br></ div>
9 <div data-offset-x="0" data-offset-y="50" style="background:papayawhip;" ><br></div>
10 <div data-offset-x="25" data-offset-y="0" style="background:blue;"><br>< /div>
11 <div data-offset-x="25" data-offset-y="50" style="background:papayawhip; "><br></div>
12 <div data-offset-x="50" data-offset-y="0" style="background:red;">
13 X<br>
14 X<br>
15 X<br>
16 </div>
17 </div>
18 </div>
19 <script>
20 checkLayout("#pagedContainer");
21 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698