blob: 55bd9edc10457bbf82c0598ab67468c60669e4f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!doctype html>
<div id="host"></div>
<script>
// Test dynamic id changes inside the shadow root.
host.attachShadow({ mode: "open" }).innerHTML = `
<svg width="100" height="100">
<defs>
<pattern id="rect1" width="100" height="100">
<rect fill="lime" width="100" height="100" />
</pattern>
</defs>
<rect fill="url(#rect)" width="100" height="100" />
</svg>
`;
document.body.offsetTop;
host.shadowRoot.getElementById("rect1").id = "rect";
</script>
|