gecko-dev/dom/workers/test/test_navigator.js
Victor Porof 0a8ff0ad85 Bug 1561435 - Format dom/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35951

--HG--
extra : source : 62f3501af4bc1c0bd1ee1977a28aee04706a6663
2019-07-05 10:44:55 +02:00

11 lines
394 B
JavaScript

SimpleTest.waitForExplicitFinish();
// This test loads in an iframe, to ensure that the navigator instance is
// loaded with the correct value of the preference.
SpecialPowers.pushPrefEnv({ set: [["dom.netinfo.enabled", true]] }, () => {
let iframe = document.createElement("iframe");
iframe.id = "f1";
iframe.src = "test_navigator_iframe.html";
document.body.appendChild(iframe);
});