mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
257 B
HTML
14 lines
257 B
HTML
|
<html>
|
||
|
<body>
|
||
|
<script>
|
||
|
function go() {
|
||
|
var w = window.open();
|
||
|
w.document.open();
|
||
|
w.document.write("<html><body>test document</body></html>");
|
||
|
w.document.close();
|
||
|
}
|
||
|
</script>
|
||
|
<button id="btn" onclick="go();">test</button>
|
||
|
</body>
|
||
|
</html>
|