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

Unified Diff: LayoutTests/fast/multicol/span/multicol-with-spanner-becomes-regular-block.html

Issue 584033002: [New Multicolumn] Add support for column-span:all (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix ref in test. Tables don't do subpixel, and that made a difference on Windows and Mac. 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/multicol/span/multicol-with-spanner-becomes-regular-block.html
diff --git a/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/multicol-becomes-regular-block.html b/LayoutTests/fast/multicol/span/multicol-with-spanner-becomes-regular-block.html
similarity index 54%
copy from LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/multicol-becomes-regular-block.html
copy to LayoutTests/fast/multicol/span/multicol-with-spanner-becomes-regular-block.html
index c7c75e40a62fc7ca24ae34723f07e7d086ef5af6..4970816271c5a9e4d0888d49125e6fc411ac78ae 100644
--- a/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/multicol-becomes-regular-block.html
+++ b/LayoutTests/fast/multicol/span/multicol-with-spanner-becomes-regular-block.html
@@ -1,7 +1,5 @@
<!DOCTYPE html>
<script>
- if (window.internals)
- internals.settings.setRegionBasedColumnsEnabled(true);
onload = function() {
var elm = document.getElementById('elm');
elm.offsetTop; // trigger layout
@@ -10,9 +8,13 @@
}
</script>
<p>There should be a blue <em>square</em> below.</p>
-<div id="elm" style="-webkit-columns:4; columns:4; orphans:1; widows:1; width:16em; line-height:4em; background:blue;">
- <br>
- <br>
- <br>
- <br>
+<div id="elm" style="-webkit-columns:4; columns:4; orphans:1; widows:1; width:17em; line-height:4em;">
+ <div style="margin-top:100px; margin-left:1em;">
+ <div style="-webkit-column-span:all; column-span:all; background:blue;">&nbsp;</div>
+ </div>
+ <div style="margin-left:1em; background:blue;">
+ <br>
+ <br>
+ <br>
+ </div>
</div>

Powered by Google App Engine
This is Rietveld 408576698