blob: 019cfda3040f07ad599d58085eb5a4686eaf2be3 (
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>
window.addEventListener("load", function() {
var div = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
var tr = document.createElementNS('http://www.w3.org/1999/xhtml', 'tr');
tr.style.display = "table-row";
document.removeChild(document.documentElement);
div.appendChild(tr);
document.appendChild(div);
}, false);
</script>
</svg>
|