зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
476 B
HTML
15 строки
476 B
HTML
<!doctype html>
|
|
<div id="host"></div>
|
|
<svg height="0">
|
|
<!-- use an empty g to force fragid-shadow-resource.svg to load before onload -->
|
|
<use href="fragid-shadow-resource.svg#empty">
|
|
</svg>
|
|
<script>
|
|
// Test that external resource URIs resolve properly inside shadow trees.
|
|
host.attachShadow({ mode: "open" }).innerHTML = `
|
|
<svg width="100" height="100">
|
|
<rect fill="url(fragid-shadow-resource.svg#rect)" width="100" height="100" />
|
|
</svg>
|
|
`;
|
|
</script>
|