haikuwebkit/LayoutTests/svg/foreignObject/foreign-object-dynamic-pars...

35 lines
1.2 KiB
XML

<svg xmlns="http://www.w3.org/2000/svg">
<foreignObject x="10" y="10" width="100" height="100">
<div xmlns="http://www.w3.org/1999/xhtml">
<h2>ABC</h2>
<table style="border: 1px solid black;">
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>C</th>
</tr>
</thead>
</table>
</div>
</foreignObject>
<foreignObject x="120" y="10" width="100" height="100">
<div xmlns="http://www.w3.org/1999/xhtml">
<h2>DEF</h2>
<table style="border: 1px solid black;">
<thead>
<tr>
<th>D</th>
<th>E</th>
<th>F</th>
</tr>
</thead>
</table>
</div>
</foreignObject>
<rect x="10" y="120" width="100" height="100" fill="green"/>
<rect x="120" y="120" width="100" height="100" fill="green"/>
<rect x="10" y="230" width="100" height="100" fill="green"/>
<rect x="120" y="230" width="100" height="100" fill="green"/>
</svg>