Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / foreignObject / multiple-foreign-objects.html
blobb9e1017f0c6fbf3c3a74245ba71786d1bc793f78
1 <html>
2 <body style="margin: 0;">
3 <svg xmlns="http://www.w3.org/2000/svg">
4 <!-- Both FOs should be visible -->
5 <foreignObject width="100" height="100">
6 <html xmlns="http://www.w3.org/1999/xhtml">
7 <body>
8 <div style="background: green; width: 100px; height: 100px;"></div>
9 </body>
10 </html>
11 </foreignObject>
12 <foreignObject x="150" width="100" height="100">
13 <html xmlns="http://www.w3.org/1999/xhtml">
14 <body>
15 <div style="background: green; width: 100px; height: 100px;"></div>
16 </body>
17 </html>
18 </foreignObject>
19 </svg>
20 </body>
21 </html>