mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
354 B
HTML
24 lines
354 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>NPAPI Stream Tests</title>
|
||
|
</head>
|
||
|
<body onload="doTest()">
|
||
|
<p id="display"></p>
|
||
|
<div id="content" style="display: none">
|
||
|
This is a plugin test window.
|
||
|
</div>
|
||
|
<div id="test">
|
||
|
<script class="testbody" type="text/javascript">
|
||
|
|
||
|
function doTest() {
|
||
|
window.opener.continueTest();
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|
||
|
|