mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
1.0 KiB
HTML
34 lines
1.0 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Pseudo Web Handler App</title>
|
|
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body onload="onLoad()">
|
|
Pseudo Web Handler App
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
<![CDATA[
|
|
function onLoad() {
|
|
|
|
// if we have a window.opener, this must be the windowContext
|
|
// instance of this test. check that we got the URI right and clean up.
|
|
if (window.opener) {
|
|
window.opener.is(location.search,
|
|
"?uri=" + encodeURIComponent(window.opener.testURI),
|
|
"uri passed to web-handler app");
|
|
window.opener.SimpleTest.finish();
|
|
}
|
|
|
|
// ensure that we actually have the privs to close non-script-opened windows
|
|
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
|
window.close();
|
|
}
|
|
]]>
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|
|
|