blob: 074a97d670f65ddd481fe182b3eede16d41571aa [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<body>
<p>SVG loaded in &lt;img&gt; (should not see head of Abe Lincoln)</p>
<svg width="100" height="100">
<rect width="100%" height="100%" fill="#0f0"/>
<rect x="20%" y="20%" width="60%" height="60%" stroke-width="1" stroke="black" fill="transparent"/>
</svg>
<br>
<p>SVG loaded in &lt;object&gt; (should see head of Abe Lincoln)</p>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100">
<rect width="100%" height="100%" fill="#0f0"/>
<rect x="20%" y="20%" width="60%" height="60%" stroke-width="1" stroke="black" fill="transparent"/>
<image xlink:href="resources/abe.png" x="20%" y="20%" width="60%" height="60%"/>
</svg>
</body>
</html>