зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
439 B
HTML
25 строки
439 B
HTML
<!doctype html>
|
|
<style>
|
|
#shadow {
|
|
fill: red;
|
|
}
|
|
</style>
|
|
<div id="host"></div>
|
|
<script>
|
|
host.attachShadow({ mode: "open" }).innerHTML = `
|
|
<style>
|
|
#shadow {
|
|
fill: lime;
|
|
}
|
|
</style>
|
|
<svg width="100" height="100">
|
|
<defs>
|
|
<g id="shadow" width="100" height="100">
|
|
<rect width="100" height="100" />
|
|
</g>
|
|
</defs>
|
|
<use href="#shadow" />
|
|
</svg>
|
|
`;
|
|
</script>
|