promoted-tree-1-ref.xhtml (869B)
1 <?xml version="1.0" encoding="UTF-8" standalone="no" ?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>Promoted subtree</title> 5 </head> 6 7 <body> 8 <p id="container"> 9 <svg xmlns="http://www.w3.org/2000/svg" width="200px" height="200px" 10 id="outer"> 11 <rect x="0" y="0" width="199" height="199" 12 style="fill: none; stroke: black"/> 13 <circle cx="100" cy="50" r="15" fill="skyblue" stroke="black" 14 stroke-width="1"/> 15 </svg> 16 <!-- (was) nested svg fragment --> 17 <svg xmlns="http://www.w3.org/2000/svg" width="200px" height="200px" 18 id="nested"> 19 <rect x="0" y="0" width="199" height="199" 20 style="fill: none; stroke: black"/> 21 <circle cx="50" cy="110" r="15" fill="greenyellow" stroke="black" 22 stroke-width="1"/> 23 </svg> 24 </p> 25 </body> 26 </html>