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

Unified Diff: LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html

Issue 1107673004: [New Multicolumn] Prevent SVG foreignObject from becoming a spanner. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 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/dynamic/remove-inline-and-spanner-after-spanner-foreignObject-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html
diff --git a/LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html b/LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html
new file mode 100644
index 0000000000000000000000000000000000000000..b749bef234c7c1ce642f5b2da11c39bbc7dcb404
--- /dev/null
+++ b/LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<style>
+ .spanner { -webkit-column-span:all; }
+</style>
+<body style="margin:0;">
+ <p>PASS if no crash or assertion failure.</p>
+ <div style="-webkit-column-count:4;">
+ <svg><foreignObject class="spanner"></foreignObject></svg><div id="a" class="spanner">a</div><span id="b">b</span><div class="spanner"></div>
+ </div>
+ <script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ onload = function() {
+ document.body.offsetTop;
+ document.getElementById('a').style.display = 'none';
+ document.body.offsetTop;
+ document.getElementById('b').style.display = 'none';
+ }
+ </script>
+</body>
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/dynamic/remove-inline-and-spanner-after-spanner-foreignObject-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698