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

Side by Side Diff: LayoutTests/fast/multicol/composited-layer-single-fragment.html

Issue 799403006: [New Multicolumn] Make computeOffsetFromCompositedAncestor() flowthread-aware. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Simplify test. Created 6 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 <style>
3 .multicol {
4 width: 60px;
5 -webkit-column-width: 20px;
6 -webkit-column-gap: 0;
7 column-fill: auto;
8 height: 60px;
9 }
10 .square {
11 width: 20px;
12 height: 20px;
13 background: green;
14 }
15 .layer { will-change: transform; }
16 </style>
17
18 <p>There should a green square below.</p>
19 <div class="multicol">
20 <div class="square"></div>
21 <div class="square"></div>
22 <div class="layer"> <!-- bottom of first column -->
23 <div class="square"></div>
24 </div>
25 <div class="square"></div>
26 <div class="layer"> <!-- middle of second column -->
27 <div class="square"></div>
28 </div>
29 <div class="square"></div>
30 <div class="layer"> <!-- entire third column -->
31 <div class="square"></div>
32 <div class="square"></div>
33 <div class="square"></div>
34 </div>
35 </div>
OLDNEW
« no previous file with comments | « LayoutTests/VirtualTestSuites ('k') | LayoutTests/fast/multicol/composited-layer-single-fragment-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698