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

Side by Side Diff: LayoutTests/fast/multicol/composited-layer-multiple-fragments-translated.html

Issue 801053005: [New Multicolumn] Render transformed layers into multiple fragments. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase master Created 5 years, 10 months 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 line-height: 20px;
10 }
11 .square {
12 width: 20px;
13 height: 20px;
14 background: red;
15 }
16 .layer { transform: translateZ(0) translateY(20px); }
17 .layer .square { background: green; }
18 </style>
19
20 <p>There should be two small green squares below, and no red.</p>
21 <div class="multicol">
22 <br>
23 <br>
24 <br>
25 <br>
26 <br>
27 <div class="layer"> <!-- from second to third column -->
28 <div class="square"></div>
29 <br>
30 <div class="square"></div>
31 </div>
32 <div class="square"></div>
33 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698