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

Side by Side Diff: LayoutTests/fast/multicol/foreignObject-expected.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .fakeColumn { float:left; width:5em; line-height:2em; }
4 </style>
5 <p>Check that an SVG foreignObject inside a multicol isn't affected by
6 multicol fragmentation at all.</p>
7 <p>The word "PASS" should be seen three times below, with some extra
8 spacing between the words. There should be no red.</p>
9 <div class="fakeColumn">
10 <br>
11 PASS
12 </div>
13 <div class="fakeColumn">
14 <svg style="display:block; width:100%; height:4em;">
15 <foreignObject x="0" y="0" width="100%" height="100%">
16 <div>
17 <br>
18 PASS<br>
19 <span style="color:red;">FAIL</span><br>
20 </div>
21 </foreignObject>
22 </svg>
23 </div>
24 <div class="fakeColumn">
25 <br>
26 PASS
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698