mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
17 lines
367 B
XML
17 lines
367 B
XML
|
|
<?xml version="1.0"?>
|
||
|
|
|
||
|
|
<svg xmlns="http://www.w3.org/2000/svg"><script>
|
||
|
|
<![CDATA[
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
|
||
|
|
document.documentElement.appendChild(rect);
|
||
|
|
document.removeChild(document.documentElement);
|
||
|
|
rect.getScreenCTM();
|
||
|
|
}
|
||
|
|
|
||
|
|
window.addEventListener("load", boom, false);
|
||
|
|
|
||
|
|
]]>
|
||
|
|
</script></svg>
|