blob: 02d0d6941cf7c5fdb7810d13c931ce3d911fdd04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<div id="host"></div>
<script>
// Test absolute URIs inside shadow trees, which behave the same way as just the fragment id.
host.attachShadow({ mode: "open" }).innerHTML = `
<svg width="100" height="100">
<defs>
<rect fill="lime" id="rect-5" width="100" height="100">
</defs>
<use href="${location.href}#rect-5" />
</svg>
`;
</script>
|