blob: ade93f70a6461ed41d16e97f3d2669042b69811d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!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>
|