mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
15 lines
365 B
XML
15 lines
365 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" onload="f()">
|
||
|
|
<rect width="50" height="50"/>
|
||
|
|
<g>
|
||
|
|
<style>
|
||
|
|
rect { fill: blue }
|
||
|
|
</style>
|
||
|
|
<rect x="60" width="50" height="50"/>
|
||
|
|
</g>
|
||
|
|
<rect x="120" width="50" height="50"/>
|
||
|
|
<script>
|
||
|
|
function f() {
|
||
|
|
document.getElementsByTagName("style")[0].setAttribute("scoped", "");
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</svg>
|