mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
361 B
HTML
12 lines
361 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<iframe></iframe>
|
|
<script>
|
|
var win = window.frames[0];
|
|
win.document.open();
|
|
win.document.write("<!DOCTYPE html><html><head><link rel='stylesheet' type='text/css' href='outer-sheet.css' /></head><body><p>test</p></body></html>");
|
|
win.document.close();
|
|
</script>
|
|
</body>
|
|
|