gecko-dev/layout/reftests/svg/fragid-shadow-4.html
2018-08-17 22:01:52 +02:00

14 lines
329 B
HTML

<!doctype html>
<div id="host"></div>
<script>
// Test references in <svg:use> work properly.
host.attachShadow({ mode: "open" }).innerHTML = `
<svg width="100" height="100">
<defs>
<rect fill="lime" id="rect-4" width="100" height="100">
</defs>
<use href="#rect-4" />
</svg>
`;
</script>