blob: b795796ad4d07acf952c58ab22ecfad03023fb60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<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>
|