Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / foreignObject.html
blob8893097c238d3b02b309ae4d88fc62395d527b98
1 <!DOCTYPE html>
2 <p>Check that an SVG foreignObject inside a multicol isn't affected by
3 multicol fragmentation at all.</p>
4 <p>The word "PASS" should be seen three times below, with some extra
5 spacing between the words. There should be no red.</p>
6 <div style="-webkit-column-count:3; -webkit-column-gap:0; column-fill:auto; width:15em; line-height:2em; height:4em;">
7 <br>
8 PASS
9 <svg style="display:block; width:100%; height:4em;">
10 <foreignObject x="0" y="0" width="100%" height="100%">
11 <div>
12 <br>
13 PASS<br>
14 <span style="color:red;">FAIL</span><br>
15 </div>
16 </foreignObject>
17 </svg>
18 <br>
19 PASS
20 </div>