mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
24 lines
552 B
HTML
24 lines
552 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<link rel="match" href="../expected/svg-url-in-shadow-root-ref.html" />
|
|
</head>
|
|
<body>
|
|
<svg>
|
|
<defs>
|
|
<lineargradient id="fill">
|
|
<stop stop-color="crimson"/>
|
|
</lineargradient>
|
|
</defs>
|
|
<rect width="100" height="100" fill="url(#fill)"/>
|
|
</svg>
|
|
</body>
|
|
<script>
|
|
const svg = document.querySelector("svg");
|
|
const shadowRoot = document.body.attachShadow({
|
|
mode: "open",
|
|
});
|
|
|
|
shadowRoot.innerHTML = svg.outerHTML;
|
|
svg.remove();
|
|
</script>
|