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

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

Issue 612363002: Let the RenderFlowThread layer have an empty size. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed nits Created 6 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/composited-layer-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #multicol {
4 -webkit-column-count: 2;
5 -webkit-column-gap: 0;
6 column-count: 2;
7 column-gap: 0;
8 width: 200px;
9 height: 100px;
10 transform: translateZ(0);
11 }
12
13 .filler {
14 width: 100px;
15 height: 100px;
16 }
17 </style>
18 <div id="multicol">
19 <div class="filler"></div>
20 <div class="filler"></div>
21 </div>
22 <div id="layers"></div>
23 <script>
24 if (window.testRunner)
25 testRunner.dumpAsText();
26
27 if (window.internals)
28 document.getElementById("layers").innerText = internals.layerTreeAsText(docu ment);
29 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/composited-layer-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698