mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
826 B
HTML
32 lines
826 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=963239
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>SystemAppProxy Test</title>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=963239">SystemAppProxy.jsm</a>
|
|
<script type="application/javascript">
|
|
|
|
"use strict";
|
|
|
|
var gUrl = SimpleTest.getTestFileURL("systemapp_helper.js");
|
|
var gScript = SpecialPowers.loadChromeScript(gUrl);
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
gScript.addMessageListener("finish", function () {
|
|
SimpleTest.ok(true, "chrome test script finished");
|
|
gScript.destroy();
|
|
SimpleTest.finish();
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|