mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
17 lines
427 B
XML
17 lines
427 B
XML
|
<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>
|