| Index: LayoutTests/fast/multicol/foreignObject-expected.html
 | 
| diff --git a/LayoutTests/fast/multicol/foreignObject-expected.html b/LayoutTests/fast/multicol/foreignObject-expected.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..559277935885f7c4f5f7d416cb787b90a39b5c3d
 | 
| --- /dev/null
 | 
| +++ b/LayoutTests/fast/multicol/foreignObject-expected.html
 | 
| @@ -0,0 +1,27 @@
 | 
| +<!DOCTYPE html>
 | 
| +<style>
 | 
| +    .fakeColumn { float:left; width:5em; line-height:2em; }
 | 
| +</style>
 | 
| +<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 class="fakeColumn">
 | 
| +    <br>
 | 
| +    PASS
 | 
| +</div>
 | 
| +<div class="fakeColumn">
 | 
| +    <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>
 | 
| +</div>
 | 
| +<div class="fakeColumn">
 | 
| +    <br>
 | 
| +    PASS
 | 
| +</div>
 | 
| 
 |