зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
202 B
HTML
12 строки
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>
|