mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
278 B
HTML
16 lines
278 B
HTML
<Html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf8">
|
|
</head>
|
|
<body>
|
|
<iframe src="#" id="data"></iframe>
|
|
<script>
|
|
var d=document.getElementById('data').contentDocument;
|
|
d.clear()
|
|
var text='Тест';
|
|
d.write(text);
|
|
d.close()
|
|
</script>
|
|
</body>
|
|
</html>
|