2 <svg style=
"position: absolute; width: 0; height: 0">
4 <pattern id=
"rect" width=
"100" height=
"100">
5 <rect fill=
"red" width=
"100" height=
"100" />
11 // Should peek the pattern from the shadow root (green), not from the document (red),
12 // even though the uri is absolute.
13 host
.attachShadow({ mode
: "open" }).innerHTML
= `
14 <svg width="100" height="100">
16 <pattern id="rect" width="100" height="100">
17 <rect fill="lime" width="100" height="100" />
20 <rect fill="url(${location.href}#rect)" width="100" height="100" />