mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
0d460e3432
This is split from the previous changeset since if we include dom/ the file size is too large for phabricator to handle. This is an autogenerated commit to handle scripts loading mochitest harness files, in the simple case where the script src is on the same line as the tag. This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170 using the `--part 2` argument. Differential Revision: https://phabricator.services.mozilla.com/D27457 --HG-- extra : moz-landing-system : lando
68 lines
2.3 KiB
HTML
68 lines
2.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1265841
|
|
-->
|
|
<head>
|
|
<title>Bug 1265841 - Test ServiceWorkerGlobalScope.notificationclose event.</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="/tests/dom/notification/test/mochitest/MockServices.js"></script>
|
|
<script type="text/javascript" src="/tests/dom/notification/test/mochitest/NotificationTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1265841">Bug 1265841</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
</div>
|
|
<pre id="test">
|
|
</pre>
|
|
<script src="utils.js"></script>
|
|
<script type="text/javascript">
|
|
SimpleTest.requestFlakyTimeout("Mock alert service dispatches show, click, and close events.");
|
|
|
|
function testFrame(src) {
|
|
var iframe = document.createElement("iframe");
|
|
iframe.src = src;
|
|
window.callback = function(data) {
|
|
window.callback = null;
|
|
document.body.removeChild(iframe);
|
|
iframe = null;
|
|
ok(data.result, "Got notificationclose event with correct data.");
|
|
ok(!data.windowOpened,
|
|
"Shouldn't allow to openWindow in notificationclose");
|
|
MockServices.unregister();
|
|
registration.unregister().then(function() {
|
|
SimpleTest.finish();
|
|
});
|
|
};
|
|
document.body.appendChild(iframe);
|
|
}
|
|
|
|
var registration;
|
|
|
|
function runTest() {
|
|
MockServices.register();
|
|
navigator.serviceWorker.register("notificationclose.js", { scope: "notificationclose.html" }).then(function(reg) {
|
|
registration = reg;
|
|
return waitForState(reg.installing, 'activated');
|
|
}, function(e) {
|
|
ok(false, "registration should have passed!");
|
|
}).then(() => {
|
|
testFrame('notificationclose.html');
|
|
});
|
|
};
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
SpecialPowers.pushPrefEnv({"set": [
|
|
["dom.serviceWorkers.exemptFromPerDomainMax", true],
|
|
["dom.serviceWorkers.enabled", true],
|
|
["dom.serviceWorkers.testing.enabled", true],
|
|
["dom.webnotifications.workers.enabled", true],
|
|
["dom.webnotifications.serviceworker.enabled", true],
|
|
["notification.prompt.testing", true],
|
|
]}, runTest);
|
|
</script>
|
|
</body>
|
|
</html>
|