mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
367 B
XML
18 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>
|