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

Unified Diff: LayoutTests/fast/multicol/foreignObject.html

Issue 1131283004: Prevent SVG children from participating in an ancestor multicol context. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Initialize m_isPaginated and m_pageLogicalHeightChanged. Created 5 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
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/foreignObject-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/multicol/foreignObject.html
diff --git a/LayoutTests/fast/multicol/foreignObject.html b/LayoutTests/fast/multicol/foreignObject.html
new file mode 100644
index 0000000000000000000000000000000000000000..8893097c238d3b02b309ae4d88fc62395d527b98
--- /dev/null
+++ b/LayoutTests/fast/multicol/foreignObject.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<p>Check that an SVG foreignObject inside a multicol isn't affected by
+ multicol fragmentation at all.</p>
+<p>The word "PASS" should be seen three times below, with some extra
+ spacing between the words. There should be no red.</p>
+<div style="-webkit-column-count:3; -webkit-column-gap:0; column-fill:auto; width:15em; line-height:2em; height:4em;">
+ <br>
+ PASS
+ <svg style="display:block; width:100%; height:4em;">
+ <foreignObject x="0" y="0" width="100%" height="100%">
+ <div>
+ <br>
+ PASS<br>
+ <span style="color:red;">FAIL</span><br>
+ </div>
+ </foreignObject>
+ </svg>
+ <br>
+ PASS
+</div>
« no previous file with comments | « no previous file | LayoutTests/fast/multicol/foreignObject-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698