mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
33 lines
624 B
HTML
33 lines
624 B
HTML
<html>
|
|
<head>
|
|
<title>Test missing manifest</title>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<script type="text/javascript">
|
|
|
|
var gTestWin;
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
SpecialPowers.pushPermissions([{'type': 'offline-app', 'allow': true, 'context': document}], startTest);
|
|
|
|
function startTest() {
|
|
// now this will properly load the manifest.
|
|
gTestWin = window.open("missing.html");
|
|
}
|
|
|
|
function finish() {
|
|
gTestWin.close();
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
</body>
|
|
</html>
|