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

Unified Diff: LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-summary-expected.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-summary-expected.html
diff --git a/LayoutTests/fast/multicol/span/clone-summary.html b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-summary-expected.html
similarity index 82%
copy from LayoutTests/fast/multicol/span/clone-summary.html
copy to LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-summary-expected.html
index 84587e6d0ef23ae0c903e6b960844ec887918110..9a9bd0ca88949744f058a3484a4a452efa7c5327 100644
--- a/LayoutTests/fast/multicol/span/clone-summary.html
+++ b/LayoutTests/fast/multicol/newmulticol/compare-with-old-impl/clone-summary-expected.html
@@ -1,16 +1,16 @@
<!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; }
-#summary1 { color: white; }
+#summary1 { color: white; }
</style>
<script>
document.body.offsetTop;
var container = document.createElement('div');
container.setAttribute('id', 'container');
-document.body.appendChild(container);
+document.body.appendChild(container);
summary1 = document.createElement('summary');
summary1.setAttribute('id', 'summary1');
container.appendChild(summary1);

Powered by Google App Engine
This is Rietveld 408576698