blob: 48a9870e7eee487bd5a59a56f350048b5df709eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<script>
function test() {
document.open();
document.write('<html><body>WYCIWYG DOCUMENT</body></html>');
document.close();
}
</script>
<body onload="setTimeout(test, 0);">
</body>
</html>
|