foreign-object-containing-svg-in-svg-in-object.html (701B)
1 <!doctype html> 2 <title>An <svg> wrapped in a <foreignObject> in an <object></title> 3 <link rel="help" href="https://svgwg.org/svg2-draft/single-page.html#embedded-ForeignObjectElement"/> 4 <link rel="match" href="../../struct/reftests/reference/green-100x100.html"> 5 <object data="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'> 6 <foreignObject width='100' height='100'> 7 <div xmlns='http://www.w3.org/1999/xhtml' style='display: flex'> 8 <div> 9 <svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'> 10 <rect width='100' height='100' fill='green'/> 11 </svg> 12 </div> 13 </div> 14 </foreignObject> 15 </svg>"></object>