test_navigator.js (394B)
1 SimpleTest.waitForExplicitFinish(); 2 3 // This test loads in an iframe, to ensure that the navigator instance is 4 // loaded with the correct value of the preference. 5 SpecialPowers.pushPrefEnv({ set: [["dom.netinfo.enabled", true]] }, () => { 6 let iframe = document.createElement("iframe"); 7 iframe.id = "f1"; 8 iframe.src = "test_navigator_iframe.html"; 9 document.body.appendChild(iframe); 10 });