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

Unified Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-flexbox.html

Issue 296413007: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@359976
Patch Set: Created 6 years, 7 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
Index: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-flexbox.html
diff --git a/LayoutTests/fast/multicol/span/clone-flexbox.html b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-flexbox.html
similarity index 81%
copy from LayoutTests/fast/multicol/span/clone-flexbox.html
copy to LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-flexbox.html
index 4e9aed3f74076552802210a83b35b5ef11d3fd60..30e23c9413d638e34d490c542926282367c1a389 100644
--- a/LayoutTests/fast/multicol/span/clone-flexbox.html
+++ b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-flexbox.html
@@ -1,18 +1,20 @@
<!DOCTYPE html>
<html>
-<body style="font-family: Ahem; -webkit-font-smoothing: none;">
+<body style="font-family: ahem; -webkit-font-smoothing: none;">
<style>
#container { -webkit-column-width: 100px; }
#div1 { -webkit-column-span: all; }
#flexbox1 { color: white; }
</style>
<script>
+if (window.internals)
+ internals.settings.setRegionBasedColumnsEnabled(true);
if (window.testRunner)
testRunner.dumpAsText();
document.body.offsetTop;
var container = document.createElement('div');
container.setAttribute('id', 'container');
-document.body.appendChild(container);
+document.body.appendChild(container);
flexbox1 = document.createElement('div');
flexbox1.setAttribute('id', 'flexbox1');
container.appendChild(flexbox1);

Powered by Google App Engine
This is Rietveld 408576698