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

Unified 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, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/composited-layer-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/composited-layer.html
diff --git a/LayoutTests/fast/multicol/composited-layer.html b/LayoutTests/fast/multicol/composited-layer.html
new file mode 100644
index 0000000000000000000000000000000000000000..5b5c8ec5fa3b3eb90bfc38b0c4f2f8ffcc853bd1
--- /dev/null
+++ b/LayoutTests/fast/multicol/composited-layer.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<style>
+#multicol {
+ -webkit-column-count: 2;
+ -webkit-column-gap: 0;
+ column-count: 2;
+ column-gap: 0;
+ width: 200px;
+ height: 100px;
+ transform: translateZ(0);
+}
+
+.filler {
+ width: 100px;
+ height: 100px;
+}
+</style>
+<div id="multicol">
+ <div class="filler"></div>
+ <div class="filler"></div>
+</div>
+<div id="layers"></div>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+
+if (window.internals)
+ document.getElementById("layers").innerText = internals.layerTreeAsText(document);
+</script>
« 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