mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
383 B
XML
17 lines
383 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var htmlBody = document.createElementNS("http://www.w3.org/1999/xhtml", "body");
|
||
|
document.documentElement.appendChild(htmlBody);
|
||
|
htmlBody.setAttribute('vlink', "transparent");
|
||
|
document.height;
|
||
|
document.vlinkColor;
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", boom, false);
|
||
|
</script>
|
||
|
|
||
|
</svg>
|