mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-12 13:31:30 +00:00
12 lines
202 B
HTML
12 lines
202 B
HTML
|
<html>
|
||
|
<script>
|
||
|
function test() {
|
||
|
document.open();
|
||
|
document.write('<html><body>WYCIWYG DOCUMENT</body></html>');
|
||
|
document.close();
|
||
|
}
|
||
|
</script>
|
||
|
<body onload="setTimeout(test, 0);">
|
||
|
</body>
|
||
|
</html>
|