Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / foreignObject / background-render-phase.html
blob6906691d4ce83947962caafbb84e99cc8fc9af70
1 <html>
2 <body style="margin: 0;">
3 <svg xmlns="http://www.w3.org/2000/svg">
4 <!-- The FO/div background should cover the rect element -->
5 <rect x="0" y="0" width="100" height="50" fill="red"></rect>
6 <foreignObject x="0" y="0" width="200" height="50">
7 <html xmlns="http://www.w3.org/1999/xhtml">
8 <body>
9 <div style="background: green; height: 50px;"></div>
10 </body>
11 </html>
12 </foreignObject>
13 </svg>
14 </body>
15 </html>