Bug 1496082: Enable ESLint for docshell/test/navigation and docshell/test/unit (automatic fixes only). r=bzbarsky

Enabled ESLint for:

* docshell/test/navigation/**
* docshell/test/unit/**
* docshell/test/unit_ipc/**

Changed .eslintignore to allow for this and ran ./mach eslint --fix on the above directories and checked automatic fixes

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Toby Ward 2018-11-06 14:48:43 +00:00
parent 8a92d6f72c
commit 415ae552bb
48 changed files with 324 additions and 333 deletions

View file

@ -14,7 +14,11 @@ obj*/**
# We ignore all these directories by default, until we get them enabled. # We ignore all these directories by default, until we get them enabled.
# If you are enabling a directory, please add directory specific exclusions # If you are enabling a directory, please add directory specific exclusions
# below. # below.
docshell/** docshell/resources/**
docshell/test/browser/**
docshell/test/chrome/**
docshell/test/iframesandbox/**
docshell/test/mochitest/**
extensions/cookie/** extensions/cookie/**
extensions/spellcheck/** extensions/spellcheck/**
extensions/universalchardet/** extensions/universalchardet/**

View file

@ -9,7 +9,7 @@
// ///////////////////////////////////////////////////////////////////////// // /////////////////////////////////////////////////////////////////////////
var body = "This frame was navigated."; var body = "This frame was navigated.";
var target_url = "navigation_target_url.html" var target_url = "navigation_target_url.html";
var popup_body = "This is a popup"; var popup_body = "This is a popup";
var target_popup_url = "navigation_target_popup_url.html"; var target_popup_url = "navigation_target_popup_url.html";

View file

@ -1,5 +1,5 @@
<html><head> <html><head>
<script> window.addEventListener("pageshow", function(){opener.nextTest();}, false); </script> <script> window.addEventListener("pageshow", function() { opener.nextTest(); }); </script>
</head><body> </head><body>
<div style="position:absolute; left:0px; top:0px; width:50%; height:150%; background-color:blue"> <div style="position:absolute; left:0px; top:0px; width:50%; height:150%; background-color:blue">
<p>This is a very tall blue box.</p> <p>This is a very tall blue box.</p>

View file

@ -13,13 +13,13 @@ add_task(async function() {
SpecialPowers.pushPrefEnv({ SpecialPowers.pushPrefEnv({
"set": [ "set": [
["browser.link.open_newwindow", 2], ["browser.link.open_newwindow", 2],
] ],
}, resolve); }, resolve);
}); });
await BrowserTestUtils.withNewTab({ await BrowserTestUtils.withNewTab({
gBrowser, gBrowser,
url: TEST_PAGE url: TEST_PAGE,
}, async function(browser) { }, async function(browser) {
let openedPromise = BrowserTestUtils.waitForNewWindow(); let openedPromise = BrowserTestUtils.waitForNewWindow();
BrowserTestUtils.synthesizeMouse("a", 0, 0, {}, browser); BrowserTestUtils.synthesizeMouse("a", 0, 0, {}, browser);

View file

@ -30,31 +30,31 @@
let shistory = webNav.sessionHistory; let shistory = webNav.sessionHistory;
let testSteps = [ let testSteps = [
function() { function() {
opener.is(shistory.count, 1, 'check history length'); opener.is(shistory.count, 1, "check history length");
opener.is(shistory.index, 0, 'check history index'); opener.is(shistory.index, 0, "check history index");
opener.ok(!webNav.canGoForward, 'check canGoForward'); opener.ok(!webNav.canGoForward, "check canGoForward");
setTimeout(() => window.location = 'file_bug1300461_back.html', 0); setTimeout(() => window.location = "file_bug1300461_back.html", 0);
}, },
function() { function() {
opener.is(shistory.count, 2, 'check history length'); opener.is(shistory.count, 2, "check history length");
opener.is(shistory.index, 0, 'check history index'); opener.is(shistory.index, 0, "check history index");
opener.ok(webNav.canGoForward, 'check canGoForward'); opener.ok(webNav.canGoForward, "check canGoForward");
window.history.forward(); window.history.forward();
opener.is(shistory.legacySHistory.requestedIndex, 1, 'check requestedIndex'); opener.is(shistory.legacySHistory.requestedIndex, 1, "check requestedIndex");
}, },
function() { function() {
opener.is(shistory.count, 2, 'check history length'); opener.is(shistory.count, 2, "check history length");
opener.is(shistory.index, 0, 'check history index'); opener.is(shistory.index, 0, "check history index");
opener.ok(webNav.canGoForward, 'check canGoForward'); opener.ok(webNav.canGoForward, "check canGoForward");
opener.info('file_bug1300461.html tests finished'); opener.info("file_bug1300461.html tests finished");
opener.nextTest(); opener.nextTest();
window.close(); window.close();
} },
]; ];
function test() { function test() {
if (opener) { if (opener) {
opener.info('file_bug1300461.html test ' + opener.testCount); opener.info("file_bug1300461.html test " + opener.testCount);
testSteps[opener.testCount++](); testSteps[opener.testCount++]();
} }
} }

View file

@ -15,13 +15,13 @@
function test() { function test() {
if (opener) { if (opener) {
opener.info("file_bug1300461_back.html"); opener.info("file_bug1300461_back.html");
opener.is(shistory.count, 2, 'check history length'); opener.is(shistory.count, 2, "check history length");
opener.is(shistory.index, 1, 'check history index'); opener.is(shistory.index, 1, "check history index");
opener.is(shistory.legacySHistory.requestedIndex, -1, 'check requestedIndex'); opener.is(shistory.legacySHistory.requestedIndex, -1, "check requestedIndex");
opener.ok(webNav.canGoBack, 'check canGoBack'); opener.ok(webNav.canGoBack, "check canGoBack");
if (opener.testCount == 1) { if (opener.testCount == 1) {
opener.info('replaceState to redirect.html'); opener.info("replaceState to redirect.html");
window.history.replaceState({}, '', 'file_bug1300461_redirect.html'); window.history.replaceState({}, "", "file_bug1300461_redirect.html");
} }
window.history.back(); window.history.back();
} }

View file

@ -4,7 +4,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>Bug 1326251</title> <title>Bug 1326251</title>
<script> <script>
const BASE_URL = 'http://mochi.test:8888/tests/docshell/test/navigation/'; const BASE_URL = "http://mochi.test:8888/tests/docshell/test/navigation/";
let testSteps = [ let testSteps = [
async function() { async function() {
// Test 1: Create dynamic iframe with bfcache enabled. // Test 1: Create dynamic iframe with bfcache enabled.
@ -13,35 +13,35 @@
// entries preserved. // entries preserved.
window.onunload = null; // enable bfcache window.onunload = null; // enable bfcache
let dynamicFrame = await createDynamicFrame(document); let dynamicFrame = await createDynamicFrame(document);
await loadUriInFrame(document.getElementById('staticFrame'), 'frame1.html'); await loadUriInFrame(document.getElementById("staticFrame"), "frame1.html");
await loadUriInFrame(document.getElementById('dynamicFrame'), 'frame1.html'); await loadUriInFrame(document.getElementById("dynamicFrame"), "frame1.html");
await loadUriInFrame(document.getElementById('staticFrame'), 'frame2.html'); await loadUriInFrame(document.getElementById("staticFrame"), "frame2.html");
await loadUriInFrame(document.getElementById('dynamicFrame'), 'frame2.html'); await loadUriInFrame(document.getElementById("dynamicFrame"), "frame2.html");
opener.is(history.length, 5, 'history.length'); opener.is(history.length, 5, "history.length");
window.location = 'goback.html'; window.location = "goback.html";
}, },
async function() { async function() {
let webNav = SpecialPowers.wrap(window) let webNav = SpecialPowers.wrap(window)
.docShell .docShell
.QueryInterface(SpecialPowers.Ci.nsIWebNavigation); .QueryInterface(SpecialPowers.Ci.nsIWebNavigation);
let shistory = webNav.sessionHistory; let shistory = webNav.sessionHistory;
opener.is(webNav.canGoForward, true, 'canGoForward'); opener.is(webNav.canGoForward, true, "canGoForward");
opener.is(shistory.index, 4, 'shistory.index'); opener.is(shistory.index, 4, "shistory.index");
opener.is(history.length, 6, 'history.length'); opener.is(history.length, 6, "history.length");
opener.is(document.getElementById('staticFrame').contentWindow.location.href, BASE_URL + 'frame2.html', 'staticFrame location'); opener.is(document.getElementById("staticFrame").contentWindow.location.href, BASE_URL + "frame2.html", "staticFrame location");
opener.is(document.getElementById('dynamicFrame').contentWindow.location.href, BASE_URL + 'frame2.html', 'dynamicFrame location'); opener.is(document.getElementById("dynamicFrame").contentWindow.location.href, BASE_URL + "frame2.html", "dynamicFrame location");
// Test 2: Load another page in dynamic iframe, canGoForward should be // Test 2: Load another page in dynamic iframe, canGoForward should be
// false. // false.
await loadUriInFrame(document.getElementById('dynamicFrame'), 'frame3.html'); await loadUriInFrame(document.getElementById("dynamicFrame"), "frame3.html");
opener.is(webNav.canGoForward, false, 'canGoForward'); opener.is(webNav.canGoForward, false, "canGoForward");
opener.is(shistory.index, 5, 'shistory.index'); opener.is(shistory.index, 5, "shistory.index");
opener.is(history.length, 6, 'history.length'); opener.is(history.length, 6, "history.length");
// Test 3: Navigate to antoher page with bfcache disabled, all dynamic // Test 3: Navigate to antoher page with bfcache disabled, all dynamic
// iframe entries should be removed. // iframe entries should be removed.
window.onunload = function() {}; // disable bfcache window.onunload = function() {}; // disable bfcache
window.location = 'goback.html'; window.location = "goback.html";
}, },
async function() { async function() {
let windowWrap = SpecialPowers.wrap(window); let windowWrap = SpecialPowers.wrap(window);
@ -49,58 +49,58 @@
let shistory = docShell.QueryInterface(SpecialPowers.Ci.nsIWebNavigation) let shistory = docShell.QueryInterface(SpecialPowers.Ci.nsIWebNavigation)
.sessionHistory; .sessionHistory;
// Now staticFrame has frame0 -> frame1 -> frame2. // Now staticFrame has frame0 -> frame1 -> frame2.
opener.is(docShell.previousEntryIndex, 3, 'docShell.previousEntryIndex'); opener.is(docShell.previousEntryIndex, 3, "docShell.previousEntryIndex");
opener.is(docShell.loadedEntryIndex, 2, 'docShell.loadedEntryIndex'); opener.is(docShell.loadedEntryIndex, 2, "docShell.loadedEntryIndex");
opener.is(shistory.index, 2, 'shistory.index'); opener.is(shistory.index, 2, "shistory.index");
opener.is(history.length, 4, 'history.length'); opener.is(history.length, 4, "history.length");
opener.is(document.getElementById('staticFrame').contentWindow.location.href, BASE_URL + 'frame2.html', 'staticFrame location'); opener.is(document.getElementById("staticFrame").contentWindow.location.href, BASE_URL + "frame2.html", "staticFrame location");
opener.ok(!document.getElementById('dynamicFrame'), 'dynamicFrame should not exist'); opener.ok(!document.getElementById("dynamicFrame"), "dynamicFrame should not exist");
// Test 4: Load a nested frame in the static frame, navigate the inner // Test 4: Load a nested frame in the static frame, navigate the inner
// static frame, add a inner dynamic frame and navigate the dynamic // static frame, add a inner dynamic frame and navigate the dynamic
// frame. Then navigate the outer static frame and go back. The inner // frame. Then navigate the outer static frame and go back. The inner
// iframe should show the last entry of inner static frame. // iframe should show the last entry of inner static frame.
let staticFrame = document.getElementById('staticFrame'); let staticFrame = document.getElementById("staticFrame");
staticFrame.width = '320px'; staticFrame.width = "320px";
staticFrame.height = '360px'; staticFrame.height = "360px";
await loadUriInFrame(staticFrame, 'iframe_static.html'); await loadUriInFrame(staticFrame, "iframe_static.html");
let innerStaticFrame = staticFrame.contentDocument.getElementById('staticFrame'); let innerStaticFrame = staticFrame.contentDocument.getElementById("staticFrame");
await loadUriInFrame(innerStaticFrame, 'frame1.html'); await loadUriInFrame(innerStaticFrame, "frame1.html");
let innerDynamicFrame = await createDynamicFrame(staticFrame.contentDocument, 'frame2.html'); let innerDynamicFrame = await createDynamicFrame(staticFrame.contentDocument, "frame2.html");
await loadUriInFrame(innerDynamicFrame, 'frame3.html'); await loadUriInFrame(innerDynamicFrame, "frame3.html");
// staticFrame: frame0 -> frame1 -> frame2 -> iframe_static // staticFrame: frame0 -> frame1 -> frame2 -> iframe_static
// innerStaticFrame: frame0 -> frame1 // innerStaticFrame: frame0 -> frame1
// innerDynamicFrame: frame2 -> frame3 // innerDynamicFrame: frame2 -> frame3
opener.is(shistory.index, 5, 'shistory.index'); opener.is(shistory.index, 5, "shistory.index");
opener.is(history.length, 6, 'history.length'); opener.is(history.length, 6, "history.length");
// Wait for 2 load events - navigation and goback. // Wait for 2 load events - navigation and goback.
let onloadPromise = awaitOnload(staticFrame, 2); let onloadPromise = awaitOnload(staticFrame, 2);
await loadUriInFrame(staticFrame, 'goback.html'); await loadUriInFrame(staticFrame, "goback.html");
await onloadPromise; await onloadPromise;
// staticFrame: frame0 -> frame1 -> frame2 -> iframe_static -> goback // staticFrame: frame0 -> frame1 -> frame2 -> iframe_static -> goback
// innerStaticFrame: frame0 -> frame1 // innerStaticFrame: frame0 -> frame1
opener.is(shistory.index, 4, 'shistory.index'); opener.is(shistory.index, 4, "shistory.index");
opener.is(history.length, 6, 'history.length'); opener.is(history.length, 6, "history.length");
innerStaticFrame = staticFrame.contentDocument.getElementById('staticFrame'); innerStaticFrame = staticFrame.contentDocument.getElementById("staticFrame");
opener.is(innerStaticFrame.contentDocument.location.href, BASE_URL + 'frame1.html', 'innerStaticFrame location'); opener.is(innerStaticFrame.contentDocument.location.href, BASE_URL + "frame1.html", "innerStaticFrame location");
opener.ok(!staticFrame.contentDocument.getElementById('dynamicFrame'), 'innerDynamicFrame should not exist'); opener.ok(!staticFrame.contentDocument.getElementById("dynamicFrame"), "innerDynamicFrame should not exist");
// Test 5: Insert and navigate inner dynamic frame again with bfcache // Test 5: Insert and navigate inner dynamic frame again with bfcache
// enabled, and navigate top level window to a special page which will // enabled, and navigate top level window to a special page which will
// evict bfcache then goback. Verify that dynamic entries are correctly // evict bfcache then goback. Verify that dynamic entries are correctly
// removed in this case. // removed in this case.
window.onunload = null; // enable bfcache window.onunload = null; // enable bfcache
staticFrame.width = '320px'; staticFrame.width = "320px";
staticFrame.height = '360px'; staticFrame.height = "360px";
innerDynamicFrame = await createDynamicFrame(staticFrame.contentDocument, 'frame2.html'); innerDynamicFrame = await createDynamicFrame(staticFrame.contentDocument, "frame2.html");
await loadUriInFrame(innerDynamicFrame, 'frame3.html'); await loadUriInFrame(innerDynamicFrame, "frame3.html");
// staticFrame: frame0 -> frame1 -> frame2 -> iframe_static // staticFrame: frame0 -> frame1 -> frame2 -> iframe_static
// innerStaticFrame: frame0 -> frame1 // innerStaticFrame: frame0 -> frame1
// innerDynamicFrame: frame2 -> frame3 // innerDynamicFrame: frame2 -> frame3
opener.is(shistory.index, 5, 'shistory.index'); opener.is(shistory.index, 5, "shistory.index");
opener.is(history.length, 6, 'history.length'); opener.is(history.length, 6, "history.length");
window.location = 'file_bug1326251_evict_cache.html'; window.location = "file_bug1326251_evict_cache.html";
}, },
async function() { async function() {
let windowWrap = SpecialPowers.wrap(window); let windowWrap = SpecialPowers.wrap(window);
@ -109,26 +109,26 @@
.sessionHistory; .sessionHistory;
// staticFrame: frame0 -> frame1 -> frame2 -> iframe_static // staticFrame: frame0 -> frame1 -> frame2 -> iframe_static
// innerStaticFrame: frame0 -> frame1 // innerStaticFrame: frame0 -> frame1
opener.is(docShell.previousEntryIndex, 5, 'docShell.previousEntryIndex'); opener.is(docShell.previousEntryIndex, 5, "docShell.previousEntryIndex");
opener.is(docShell.loadedEntryIndex, 4, 'docShell.loadedEntryIndex'); opener.is(docShell.loadedEntryIndex, 4, "docShell.loadedEntryIndex");
opener.is(shistory.index, 4, 'shistory.index'); opener.is(shistory.index, 4, "shistory.index");
opener.is(history.length, 6, 'history.length'); opener.is(history.length, 6, "history.length");
let staticFrame = document.getElementById('staticFrame'); let staticFrame = document.getElementById("staticFrame");
let innerStaticFrame = staticFrame.contentDocument.getElementById('staticFrame'); let innerStaticFrame = staticFrame.contentDocument.getElementById("staticFrame");
opener.is(innerStaticFrame.contentDocument.location.href, BASE_URL + 'frame1.html', 'innerStaticFrame location'); opener.is(innerStaticFrame.contentDocument.location.href, BASE_URL + "frame1.html", "innerStaticFrame location");
opener.ok(!staticFrame.contentDocument.getElementById('dynamicFrame'), 'innerDynamicFrame should not exist'); opener.ok(!staticFrame.contentDocument.getElementById("dynamicFrame"), "innerDynamicFrame should not exist");
// Test 6: Insert and navigate inner dynamic frame and then reload outer // Test 6: Insert and navigate inner dynamic frame and then reload outer
// frame. Verify that inner dynamic frame entries are all removed. // frame. Verify that inner dynamic frame entries are all removed.
staticFrame.width = '320px'; staticFrame.width = "320px";
staticFrame.height = '360px'; staticFrame.height = "360px";
let innerDynamicFrame = await createDynamicFrame(staticFrame.contentDocument, 'frame2.html'); let innerDynamicFrame = await createDynamicFrame(staticFrame.contentDocument, "frame2.html");
await loadUriInFrame(innerDynamicFrame, 'frame3.html'); await loadUriInFrame(innerDynamicFrame, "frame3.html");
// staticFrame: frame0 -> frame1 -> frame2 -> iframe_static // staticFrame: frame0 -> frame1 -> frame2 -> iframe_static
// innerStaticFrame: frame0 -> frame1 // innerStaticFrame: frame0 -> frame1
// innerDynamicFrame: frame2 -> frame3 // innerDynamicFrame: frame2 -> frame3
opener.is(shistory.index, 5, 'shistory.index'); opener.is(shistory.index, 5, "shistory.index");
opener.is(history.length, 6, 'history.length'); opener.is(history.length, 6, "history.length");
let staticFrameLoadPromise = new Promise(resolve => { let staticFrameLoadPromise = new Promise(resolve => {
staticFrame.onload = resolve; staticFrame.onload = resolve;
}); });
@ -136,34 +136,34 @@
await staticFrameLoadPromise; await staticFrameLoadPromise;
// staticFrame: frame0 -> frame1 -> frame2 -> iframe_static // staticFrame: frame0 -> frame1 -> frame2 -> iframe_static
// innerStaticFrame: frame0 -> frame1 // innerStaticFrame: frame0 -> frame1
opener.is(shistory.index, 4, 'shistory.index'); opener.is(shistory.index, 4, "shistory.index");
opener.is(history.length, 5, 'history.length'); opener.is(history.length, 5, "history.length");
innerStaticFrame = staticFrame.contentDocument.getElementById('staticFrame'); innerStaticFrame = staticFrame.contentDocument.getElementById("staticFrame");
opener.is(innerStaticFrame.contentDocument.location.href, BASE_URL + 'frame1.html', 'innerStaticFrame location'); opener.is(innerStaticFrame.contentDocument.location.href, BASE_URL + "frame1.html", "innerStaticFrame location");
opener.ok(!staticFrame.contentDocument.getElementById('dynamicFrame'), 'innerDynamicFrame should not exist'); opener.ok(!staticFrame.contentDocument.getElementById("dynamicFrame"), "innerDynamicFrame should not exist");
opener.nextTest(); opener.nextTest();
window.close(); window.close();
} },
]; ];
function awaitOnload(frame, occurances = 1) { function awaitOnload(frame, occurances = 1) {
return new Promise(function(resolve, reject) { return new Promise(function(resolve, reject) {
let count = 0; let count = 0;
frame.addEventListener('load', function listener(e) { frame.addEventListener("load", function listener(e) {
if (++count == occurances) { if (++count == occurances) {
frame.removeEventListener('load', listener); frame.removeEventListener("load", listener);
setTimeout(resolve, 0); setTimeout(resolve, 0);
} }
}); });
}); });
} }
async function createDynamicFrame(targetDocument, frameSrc='frame0.html') { async function createDynamicFrame(targetDocument, frameSrc = "frame0.html") {
let dynamicFrame = targetDocument.createElement('iframe'); let dynamicFrame = targetDocument.createElement("iframe");
let onloadPromise = awaitOnload(dynamicFrame); let onloadPromise = awaitOnload(dynamicFrame);
dynamicFrame.id = 'dynamicFrame'; dynamicFrame.id = "dynamicFrame";
dynamicFrame.src = frameSrc; dynamicFrame.src = frameSrc;
let container = targetDocument.getElementById('frameContainer'); let container = targetDocument.getElementById("frameContainer");
container.appendChild(dynamicFrame); container.appendChild(dynamicFrame);
await onloadPromise; await onloadPromise;
return dynamicFrame; return dynamicFrame;

View file

@ -15,7 +15,7 @@
iframe.onload = function() { iframe.onload = function() {
opener.postMessage(iframe.contentWindow.location.href, "*"); opener.postMessage(iframe.contentWindow.location.href, "*");
}; };
} };
} }
</script> </script>
</body> </body>

View file

@ -27,6 +27,6 @@
onload = function() { onload = function() {
++loadCount; ++loadCount;
opener.is(loadCount, 1, "Should only get one onload"); opener.is(loadCount, 1, "Should only get one onload");
} };
</script> </script>
</html> </html>

View file

@ -29,7 +29,7 @@
opener.isnot(Math.round(window.scrollY), 0, "Should have restored scrolling."); opener.isnot(Math.round(window.scrollY), 0, "Should have restored scrolling.");
opener.is(history.scrollRestoration, "auto", "Should have the same scrollRestoration as before reload."); opener.is(history.scrollRestoration, "auto", "Should have the same scrollRestoration as before reload.");
history.scrollRestoration = "manual"; history.scrollRestoration = "manual";
window.onunload = function() {} // Disable bfcache. window.onunload = function() {}; // Disable bfcache.
window.location.reload(false); window.location.reload(false);
break; break;
} }
@ -40,7 +40,7 @@
document.getElementById("bottom").scrollIntoView(); document.getElementById("bottom").scrollIntoView();
window.onunload = null; // Should get bfcache behavior. window.onunload = null; // Should get bfcache behavior.
opener.setTimeout("SpecialPowers.wrap(testWindow).history.back();", 250); opener.setTimeout("SpecialPowers.wrap(testWindow).history.back();", 250);
window.location.href = 'about:blank'; window.location.href = "about:blank";
break; break;
} }
case 4: { case 4: {
@ -55,9 +55,9 @@
case 5: { case 5: {
opener.isnot(Math.round(window.scrollY), 0, "Should have scrolled to #hash."); opener.isnot(Math.round(window.scrollY), 0, "Should have scrolled to #hash.");
opener.is(history.scrollRestoration, "manual", "Should have the same scrollRestoration mode as before fragment navigation."); opener.is(history.scrollRestoration, "manual", "Should have the same scrollRestoration mode as before fragment navigation.");
window.onunload = function() {} // Disable bfcache. window.onunload = function() {}; // Disable bfcache.
opener.setTimeout("is(SpecialPowers.wrap(testWindow).history.scrollRestoration, 'auto'); SpecialPowers.wrap(testWindow).history.back();", 250); opener.setTimeout("is(SpecialPowers.wrap(testWindow).history.scrollRestoration, 'auto'); SpecialPowers.wrap(testWindow).history.back();", 250);
window.location.href = 'about:blank'; window.location.href = "about:blank";
break; break;
} }
case 6: { case 6: {

View file

@ -8,18 +8,18 @@
<script type="application/javascript"> <script type="application/javascript">
// make sure to set document.domain to the same domain as the subframe // make sure to set document.domain to the same domain as the subframe
window.onload = function() { window.onload = function() {
document.domain = 'mochi.test'; document.domain = "mochi.test";
}; };
window.addEventListener('message', receiveMessage); window.addEventListener("message", receiveMessage);
function receiveMessage(event) { function receiveMessage(event) {
// make sure to get the right start command, otherwise // make sure to get the right start command, otherwise
// let the parent know and fail the test // let the parent know and fail the test
if (event.data.start !== 'startTest') { if (event.data.start !== "startTest") {
window.removeEventListener("message", receiveMessage); window.removeEventListener("message", receiveMessage);
window.parent.postMessage({triggeringPrincipalURI: 'false'}, '*'); window.parent.postMessage({triggeringPrincipalURI: "false"}, "*");
} }
// click the link to navigate the subframe // click the link to navigate the subframe
document.getElementById('testlink').click(); document.getElementById("testlink").click();
} }
</script> </script>

View file

@ -6,9 +6,9 @@
<script type='application/javascript'> <script type='application/javascript'>
// make sure to set document.domain to same domain as frame 1 // make sure to set document.domain to same domain as frame 1
window.onload = function() { window.onload = function() {
document.domain = 'mochi.test'; document.domain = "mochi.test";
// let Frame 1 know that we are ready to run the test // let Frame 1 know that we are ready to run the test
window.parent.parent.frames[0].postMessage({start: 'startTest'}, '*'); window.parent.parent.frames[0].postMessage({start: "startTest"}, "*");
}; };
</script> </script>
</body> </body>

View file

@ -14,7 +14,7 @@
var referrerURI = document.referrer; var referrerURI = document.referrer;
window.parent.parent.postMessage({triggeringPrincipalURI, window.parent.parent.postMessage({triggeringPrincipalURI,
loadingPrincipalURI, loadingPrincipalURI,
referrerURI}, '*'); referrerURI}, "*");
} }
</script> </script>
</body> </body>

View file

@ -1,5 +1,5 @@
<html><head> <html><head>
<script> window.addEventListener("pageshow", function(){opener.nextTest();}, false); </script> <script> window.addEventListener("pageshow", function() { opener.nextTest(); }); </script>
</head><body> </head><body>
<div style="position:absolute; left:0px; top:0px; width:50%; height:150%; background-color:red"> <div style="position:absolute; left:0px; top:0px; width:50%; height:150%; background-color:red">
<p>This is a very tall red box.</p> <p>This is a very tall red box.</p>

View file

@ -20,7 +20,7 @@ window.onload = function () {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 1); }, 1);
} };
</script> </script>
</head> </head>
<body> <body>

View file

@ -20,7 +20,7 @@ window.onload = function () {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 2); }, 2);
} };
function countAndClose(name, expected_count) { function countAndClose(name, expected_count) {
var array_of_frames = xpcGetFramesByName(name); var array_of_frames = xpcGetFramesByName(name);

View file

@ -26,7 +26,7 @@ newwindow.onload = function() {
is(newwindow.innerWidth, 200, "window.open has correct width dimensions"); is(newwindow.innerWidth, 200, "window.open has correct width dimensions");
SimpleTest.finish(); SimpleTest.finish();
newwindow.close(); newwindow.close();
} };
</script> </script>
</pre> </pre>
</body> </body>

View file

@ -21,20 +21,20 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=386782
{ {
// <html><body><p>designModeDocument</p></body></html> // <html><body><p>designModeDocument</p></body></html>
url: "file_bug386782_designmode.html", url: "file_bug386782_designmode.html",
name: 'designModeNavigate', name: "designModeNavigate",
onload(doc) { doc.designMode = "on"; }, onload(doc) { doc.designMode = "on"; },
expectedBodyBeforeEdit: '<p>designModeDocument</p>', expectedBodyBeforeEdit: "<p>designModeDocument</p>",
expectedBodyAfterEdit: '<p>EDITED designModeDocument</p>', expectedBodyAfterEdit: "<p>EDITED designModeDocument</p>",
expectedBodyAfterSecondEdit: '<p>EDITED TWICE designModeDocument</p>', expectedBodyAfterSecondEdit: "<p>EDITED TWICE designModeDocument</p>",
}, },
{ {
// <html><body contentEditable="true"><p>contentEditable</p></body></html> // <html><body contentEditable="true"><p>contentEditable</p></body></html>
url: "file_bug386782_contenteditable.html", url: "file_bug386782_contenteditable.html",
name: 'contentEditableNavigate', name: "contentEditableNavigate",
expectedBodyBeforeEdit: '<p>contentEditable</p>', expectedBodyBeforeEdit: "<p>contentEditable</p>",
expectedBodyAfterEdit: 'EDITED <br><p>contentEditable</p>', expectedBodyAfterEdit: "EDITED <br><p>contentEditable</p>",
expectedBodyAfterSecondEdit: 'EDITED TWICE <br><p>contentEditable</p>', expectedBodyAfterSecondEdit: "EDITED TWICE <br><p>contentEditable</p>",
} },
]; ];
var gTestNum = -1; var gTestNum = -1;
@ -66,10 +66,10 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=386782
// WARNING: If the following test fails, give the setTimeout() in the onload() // WARNING: If the following test fails, give the setTimeout() in the onload()
// a bit longer; the doc hasn't had enough time to setup its editor. // a bit longer; the doc hasn't had enough time to setup its editor.
is(gTest.window.document.body.innerHTML, gTest.expectedBodyBeforeEdit, "Is doc setup yet"); is(gTest.window.document.body.innerHTML, gTest.expectedBodyBeforeEdit, "Is doc setup yet");
sendString('EDITED ', gTest.window); sendString("EDITED ", gTest.window);
is(gTest.window.document.body.innerHTML, gTest.expectedBodyAfterEdit, "Editing failed."); is(gTest.window.document.body.innerHTML, gTest.expectedBodyAfterEdit, "Editing failed.");
gTest.window.location = 'about:blank'; gTest.window.location = "about:blank";
SimpleTest.waitForFocus(goBack, gTest.window); SimpleTest.waitForFocus(goBack, gTest.window);
} }
@ -101,7 +101,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=386782
// Check that we can still edit the page. // Check that we can still edit the page.
gTest.window.document.body.focus(); gTest.window.document.body.focus();
sendString('TWICE ', gTest.window); sendString("TWICE ", gTest.window);
is(gTest.window.document.body.innerHTML, gTest.expectedBodyAfterSecondEdit, "Can we still edit?"); is(gTest.window.document.body.innerHTML, gTest.expectedBodyAfterSecondEdit, "Can we still edit?");
gTest.window.close(); gTest.window.close();

View file

@ -37,7 +37,7 @@ function onReload() {
function doTest() { function doTest() {
var bodyElement = window.frames[0].frameElement.contentDocument.body; var bodyElement = window.frames[0].frameElement.contentDocument.body;
bodyElement.focus(); bodyElement.focus();
sendString('Still ', window.frames[0].frameElement.contentWindow); sendString("Still ", window.frames[0].frameElement.contentWindow);
is(bodyElement.innerHTML, "Still contentEditable", "Check we're contentEditable after reload"); is(bodyElement.innerHTML, "Still contentEditable", "Check we're contentEditable after reload");

View file

@ -43,8 +43,8 @@ var nextTest =function() {
case 1: setTimeout(step1, 0); break; case 1: setTimeout(step1, 0); break;
case 2: setTimeout(step2, 0); break; case 2: setTimeout(step2, 0); break;
case 3: setTimeout(step3, 0); break; case 3: setTimeout(step3, 0); break;
};
} }
};
var step1 = function() { var step1 = function() {
window.is(String(testWindow.location), gTallRedBoxURI, "Ensure red page loaded."); window.is(String(testWindow.location), gTallRedBoxURI, "Ensure red page loaded.");
@ -57,7 +57,7 @@ var step1 =function() {
"Page1: Ensure we can scroll down."); "Page1: Ensure we can scroll down.");
SimpleTest.executeSoon(step1_2); SimpleTest.executeSoon(step1_2);
}, {capture: true, once: true}); }, {capture: true, once: true});
sendKey('DOWN', testWindow); sendKey("DOWN", testWindow);
function step1_2() { function step1_2() {
testWindow.addEventListener("scroll", function() { testWindow.addEventListener("scroll", function() {
@ -67,9 +67,9 @@ var step1 =function() {
// Nav to blue box page. This should fire step2. // Nav to blue box page. This should fire step2.
testWindow.location = gTallBlueBoxURI; testWindow.location = gTallBlueBoxURI;
}, {capture: true, once: true}); }, {capture: true, once: true});
sendKey('UP', testWindow); sendKey("UP", testWindow);
}
} }
};
var step2 = function() { var step2 = function() {
@ -82,7 +82,7 @@ var step2 =function() {
var count = 0; var count = 0;
testWindow.addEventListener("scroll", function() { testWindow.addEventListener("scroll", function() {
if (++count < 2) { if (++count < 2) {
SimpleTest.executeSoon(function () { sendKey('DOWN', testWindow); }); SimpleTest.executeSoon(function() { sendKey("DOWN", testWindow); });
} else { } else {
testWindow.removeEventListener("scroll", arguments.callee, true); testWindow.removeEventListener("scroll", arguments.callee, true);
@ -93,8 +93,8 @@ var step2 =function() {
testWindow.history.back(); testWindow.history.back();
} }
}, true); }, true);
sendKey('DOWN', testWindow); sendKey("DOWN", testWindow);
} };
var step3 = function() { var step3 = function() {
window.is(String(testWindow.location), gTallRedBoxURI, window.is(String(testWindow.location), gTallRedBoxURI,
@ -110,8 +110,8 @@ var step3 =function() {
testWindow.close(); testWindow.close();
window.SimpleTest.finish(); window.SimpleTest.finish();
}, {capture: true, once: true}); }, {capture: true, once: true});
sendKey('DOWN', testWindow); sendKey("DOWN", testWindow);
} };
SimpleTest.waitForExplicitFinish(); SimpleTest.waitForExplicitFinish();

View file

@ -28,7 +28,7 @@ window.onload = function() {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 4); }, 4);
} };
</script> </script>
</head> </head>
<body> <body>

View file

@ -36,6 +36,7 @@ var policyID = SpecialPowers.wrap(SpecialPowers.Components).ID("{b80e19d0-878f-d
var policyName = "@mozilla.org/testpolicy;1"; var policyName = "@mozilla.org/testpolicy;1";
var policy = { var policy = {
// nsISupports implementation // nsISupports implementation
// eslint-disable-next-line mozilla/use-chromeutils-generatedqi.js
QueryInterface: function(iid) { QueryInterface: function(iid) {
iid = SpecialPowers.wrap(iid); iid = SpecialPowers.wrap(iid);
if (iid.equals(Ci.nsISupports) || if (iid.equals(Ci.nsISupports) ||
@ -46,12 +47,12 @@ var policy = {
}, },
// nsIFactory implementation // nsIFactory implementation
createInstance: function(outer, iid) { createInstance(outer, iid) {
return this.QueryInterface(iid); return this.QueryInterface(iid);
}, },
// nsIContentPolicy implementation // nsIContentPolicy implementation
shouldLoad: function(contentLocation, loadInfo, mimeTypeGuess) { shouldLoad(contentLocation, loadInfo, mimeTypeGuess) {
let contentType = loadInfo.externalContentPolicyType; let contentType = loadInfo.externalContentPolicyType;
let context = loadInfo.loadingContext; let context = loadInfo.loadingContext;
@ -79,10 +80,10 @@ var policy = {
return Ci.nsIContentPolicy.REJECT_REQUEST; return Ci.nsIContentPolicy.REJECT_REQUEST;
}, },
shouldProcess: function(contentLocation, loadInfo, mimeTypeGuess) { shouldProcess(contentLocation, loadInfo, mimeTypeGuess) {
return Ci.nsIContentPolicy.ACCEPT; return Ci.nsIContentPolicy.ACCEPT;
} },
} };
policy = SpecialPowers.wrapCallbackObject(policy); policy = SpecialPowers.wrapCallbackObject(policy);
componentManager.registerFactory(policyID, "Test content policy", policyName, policy); componentManager.registerFactory(policyID, "Test content policy", policyName, policy);
@ -91,7 +92,7 @@ categoryManager.addCategoryEntry("content-policy", policyName, policyName, false
SimpleTest.waitForExplicitFinish(); SimpleTest.waitForExplicitFinish();
// now everything is set up, let's start the test // now everything is set up, let's start the test
document.getElementById("testlink").click() document.getElementById("testlink").click();
</script> </script>
</body> </body>

View file

@ -28,7 +28,7 @@ window.onload = function () {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 4); }, 4);
} };
</script> </script>
</head> </head>
<body> <body>

View file

@ -32,7 +32,7 @@ window.onload = function () {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 6); }, 6);
} };
// opener0 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/open.html#window0", "_blank", "width=10,height=10"); // opener0 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/open.html#window0", "_blank", "width=10,height=10");
opener1 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/open.html#window1", "_blank", "width=10,height=10"); opener1 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/open.html#window1", "_blank", "width=10,height=10");

View file

@ -33,7 +33,7 @@ window.onload = function () {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 4); }, 4);
} };
var window0 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/blank.html", "window0", "width=10,height=10"); var window0 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/blank.html", "window0", "width=10,height=10");
var window1 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/blank.html", "window1", "width=10,height=10"); var window1 = window.open("http://test1.example.org:80/tests/docshell/test/navigation/blank.html", "window1", "width=10,height=10");

View file

@ -84,7 +84,7 @@ function testParent() {
window.onload = function() { window.onload = function() {
testTop(); testTop();
} };
</script> </script>
</head> </head>
<body> <body>

View file

@ -48,7 +48,7 @@ function nextTest_() {
let nextFile = testFiles.shift(); let nextFile = testFiles.shift();
info("Running " + nextFile); info("Running " + nextFile);
testWindow = window.open(nextFile, "", "width=360,height=480"); testWindow = window.open(nextFile, "", "width=360,height=480");
testWindow.onunload = function () { } // to prevent bfcache testWindow.onunload = function() { }; // to prevent bfcache
} else { } else {
SimpleTest.finish(); SimpleTest.finish();
} }

View file

@ -10,7 +10,7 @@
</style> </style>
<script> <script>
window.onload = function() { window.onload = function() {
document.getElementById('active').innerHTML = document.getElementById("active").innerHTML =
'<iframe src="navigate.html#parent.frames[0],location"></iframe>' + '<iframe src="navigate.html#parent.frames[0],location"></iframe>' +
'<iframe src="navigate.html#child1,open"></iframe>' + '<iframe src="navigate.html#child1,open"></iframe>' +
'<iframe src="navigate.html#child2,form"></iframe>' + '<iframe src="navigate.html#child2,form"></iframe>' +
@ -25,7 +25,7 @@ window.onload = function () {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 4); }, 4);
} };
</script> </script>
</head> </head>
<body> <body>

View file

@ -10,7 +10,7 @@
</style> </style>
<script> <script>
window.onload = function() { window.onload = function() {
document.getElementById('active').innerHTML = document.getElementById("active").innerHTML =
'<iframe src="http://test1.example.org:80/tests/docshell/test/navigation/navigate.html#parent.frames[0],location"></iframe>' + '<iframe src="http://test1.example.org:80/tests/docshell/test/navigation/navigate.html#parent.frames[0],location"></iframe>' +
'<iframe src="http://test1.example.org:80/tests/docshell/test/navigation/navigate.html#child1,open"></iframe>' + '<iframe src="http://test1.example.org:80/tests/docshell/test/navigation/navigate.html#child1,open"></iframe>' +
'<iframe src="http://test1.example.org:80/tests/docshell/test/navigation/navigate.html#child2,form"></iframe>' + '<iframe src="http://test1.example.org:80/tests/docshell/test/navigation/navigate.html#child2,form"></iframe>' +
@ -25,7 +25,7 @@ window.onload = function () {
xpcCleanupWindows(); xpcCleanupWindows();
SimpleTest.finish(); SimpleTest.finish();
}, 4); }, 4);
} };
</script> </script>
</head> </head>
<body> <body>

View file

@ -49,7 +49,7 @@ const LOADING_PRINCIPAL_URI =
var frameA = document.getElementById("framea"); var frameA = document.getElementById("framea");
function checkResults() { function checkResults() {
frameA.removeEventListener('load', checkResults); frameA.removeEventListener("load", checkResults);
var channel = SpecialPowers.wrap(frameA.contentWindow).docShell.currentDocumentChannel; var channel = SpecialPowers.wrap(frameA.contentWindow).docShell.currentDocumentChannel;
var triggeringPrincipal = channel.loadInfo.triggeringPrincipal.URI.asciiSpec; var triggeringPrincipal = channel.loadInfo.triggeringPrincipal.URI.asciiSpec;
@ -68,8 +68,8 @@ function checkResults() {
} }
function performNavigation() { function performNavigation() {
frameA.removeEventListener('load', performNavigation); frameA.removeEventListener("load", performNavigation);
frameA.addEventListener('load', checkResults); frameA.addEventListener("load", checkResults);
// load Frame B which then navigates Frame A // load Frame B which then navigates Frame A
var frameB = document.getElementById("frameb"); var frameB = document.getElementById("frameb");
@ -79,7 +79,7 @@ function performNavigation() {
// start the test // start the test
SimpleTest.waitForExplicitFinish(); SimpleTest.waitForExplicitFinish();
frameA.addEventListener('load', performNavigation); frameA.addEventListener("load", performNavigation);
</script> </script>
</pre> </pre>

View file

@ -35,7 +35,7 @@ const LOADING_PRINCIPAL_URI = TRIGGERING_PRINCIPAL_URI;
var testframe = document.getElementById("testframe"); var testframe = document.getElementById("testframe");
function checkResults() { function checkResults() {
testframe.removeEventListener('load', checkResults); testframe.removeEventListener("load", checkResults);
var channel = SpecialPowers.wrap(testframe.contentWindow).docShell.currentDocumentChannel; var channel = SpecialPowers.wrap(testframe.contentWindow).docShell.currentDocumentChannel;
var triggeringPrincipal = channel.loadInfo.triggeringPrincipal.URI.asciiSpec; var triggeringPrincipal = channel.loadInfo.triggeringPrincipal.URI.asciiSpec;
@ -54,15 +54,15 @@ function checkResults() {
} }
function performNavigation() { function performNavigation() {
testframe.removeEventListener('load', performNavigation); testframe.removeEventListener("load", performNavigation);
testframe.addEventListener('load', checkResults); testframe.addEventListener("load", checkResults);
win = window.open("file_triggeringprincipal_parent_iframe_window_open_nav.html", "testframe"); win = window.open("file_triggeringprincipal_parent_iframe_window_open_nav.html", "testframe");
} }
// start the test // start the test
SimpleTest.waitForExplicitFinish(); SimpleTest.waitForExplicitFinish();
testframe.addEventListener('load', performNavigation); testframe.addEventListener("load", performNavigation);
</script> </script>
</pre> </pre>

View file

@ -50,7 +50,7 @@ httpWin.onload = function() {
httpWin.close(); httpWin.close();
checkFinish(); checkFinish();
} };
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Test 2: window.open(javascript:) // Test 2: window.open(javascript:)
@ -71,7 +71,7 @@ jsWin.onload = function() {
jsWin.close(); jsWin.close();
checkFinish(); checkFinish();
} };
</script> </script>
</pre> </pre>

View file

@ -8,62 +8,58 @@ var pref = "browser.fixup.typo.scheme";
var data = [ var data = [
{ {
// ttp -> http. // ttp -> http.
wrong: 'ttp://www.example.com/', wrong: "ttp://www.example.com/",
fixed: 'http://www.example.com/', fixed: "http://www.example.com/",
}, },
{ {
// htp -> http. // htp -> http.
wrong: 'htp://www.example.com/', wrong: "htp://www.example.com/",
fixed: 'http://www.example.com/', fixed: "http://www.example.com/",
}, },
{ {
// ttps -> https. // ttps -> https.
wrong: 'ttps://www.example.com/', wrong: "ttps://www.example.com/",
fixed: 'https://www.example.com/', fixed: "https://www.example.com/",
}, },
{ {
// tps -> https. // tps -> https.
wrong: 'tps://www.example.com/', wrong: "tps://www.example.com/",
fixed: 'https://www.example.com/', fixed: "https://www.example.com/",
}, },
{ {
// ps -> https. // ps -> https.
wrong: 'ps://www.example.com/', wrong: "ps://www.example.com/",
fixed: 'https://www.example.com/', fixed: "https://www.example.com/",
}, },
{ {
// htps -> https. // htps -> https.
wrong: 'htps://www.example.com/', wrong: "htps://www.example.com/",
fixed: 'https://www.example.com/', fixed: "https://www.example.com/",
}, },
{ {
// ile -> file. // ile -> file.
wrong: 'ile:///this/is/a/test.html', wrong: "ile:///this/is/a/test.html",
fixed: 'file:///this/is/a/test.html', fixed: "file:///this/is/a/test.html",
}, },
{ {
// le -> file. // le -> file.
wrong: 'le:///this/is/a/test.html', wrong: "le:///this/is/a/test.html",
fixed: 'file:///this/is/a/test.html', fixed: "file:///this/is/a/test.html",
}, },
{ {
// Valid should not be changed. // Valid should not be changed.
wrong: 'https://example.com/this/is/a/test.html', wrong: "https://example.com/this/is/a/test.html",
fixed: 'https://example.com/this/is/a/test.html', fixed: "https://example.com/this/is/a/test.html",
}, },
{ {
// Unmatched should not be changed. // Unmatched should not be changed.
wrong: 'whatever://this/is/a/test.html', wrong: "whatever://this/is/a/test.html",
fixed: 'whatever://this/is/a/test.html', fixed: "whatever://this/is/a/test.html",
}, },
]; ];
var len = data.length; var len = data.length;
function run_test() {
run_next_test();
}
// Make sure we fix what needs fixing when there is no pref set. // Make sure we fix what needs fixing when there is no pref set.
add_task(function test_unset_pref_fixes_typos() { add_task(function test_unset_pref_fixes_typos() {
prefs.clearUserPref(pref); prefs.clearUserPref(pref);

View file

@ -49,7 +49,7 @@ flagInputs.concat([
flagInputs[0] | flagInputs[1], flagInputs[0] | flagInputs[1],
flagInputs[1] | flagInputs[2], flagInputs[1] | flagInputs[2],
flagInputs[0] | flagInputs[2], flagInputs[0] | flagInputs[2],
flagInputs[0] | flagInputs[1] | flagInputs[2] flagInputs[0] | flagInputs[1] | flagInputs[2],
]); ]);
/* /*
@ -205,25 +205,25 @@ var testcases = [ {
input: "[64:ff9b::8.8.8.8]", input: "[64:ff9b::8.8.8.8]",
fixedURI: "http://[64:ff9b::808:808]/", fixedURI: "http://[64:ff9b::808:808]/",
alternateURI: "http://[64:ff9b::808:808]/", alternateURI: "http://[64:ff9b::808:808]/",
protocolChange: true protocolChange: true,
}, { }, {
input: "[64:ff9b::8.8.8.8]/~moz", input: "[64:ff9b::8.8.8.8]/~moz",
fixedURI: "http://[64:ff9b::808:808]/~moz", fixedURI: "http://[64:ff9b::808:808]/~moz",
alternateURI: "http://[64:ff9b::808:808]/~moz", alternateURI: "http://[64:ff9b::808:808]/~moz",
protocolChange: true protocolChange: true,
}, { }, {
input: "[::1][::1]", input: "[::1][::1]",
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "[::1][100", input: "[::1][100",
fixedURI: null, fixedURI: null,
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "[::1]]", input: "[::1]]",
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "1234", input: "1234",
fixedURI: "http://0.0.4.210/", fixedURI: "http://0.0.4.210/",
@ -344,7 +344,7 @@ var testcases = [ {
input: "café.local", input: "café.local",
fixedURI: "http://xn--caf-dma.local/", fixedURI: "http://xn--caf-dma.local/",
alternateURI: "http://www.xn--caf-dma.local/", alternateURI: "http://www.xn--caf-dma.local/",
protocolChange: true protocolChange: true,
}, { }, {
input: "47.6182,-122.830", input: "47.6182,-122.830",
fixedURI: "http://47.6182,-122.830/", fixedURI: "http://47.6182,-122.830/",
@ -385,38 +385,38 @@ var testcases = [ {
}, { }, {
input: "moz ?.::%27", input: "moz ?.::%27",
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "mozilla.com/?q=search", input: "mozilla.com/?q=search",
fixedURI: "http://mozilla.com/?q=search", fixedURI: "http://mozilla.com/?q=search",
alternateURI: "http://www.mozilla.com/?q=search", alternateURI: "http://www.mozilla.com/?q=search",
protocolChange: true protocolChange: true,
}, { }, {
input: "mozilla.com?q=search", input: "mozilla.com?q=search",
fixedURI: "http://mozilla.com/?q=search", fixedURI: "http://mozilla.com/?q=search",
alternateURI: "http://www.mozilla.com/?q=search", alternateURI: "http://www.mozilla.com/?q=search",
protocolChange: true protocolChange: true,
}, { }, {
input: "mozilla.com ?q=search", input: "mozilla.com ?q=search",
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "mozilla.com.?q=search", input: "mozilla.com.?q=search",
fixedURI: "http://mozilla.com./?q=search", fixedURI: "http://mozilla.com./?q=search",
protocolChange: true protocolChange: true,
}, { }, {
input: "mozilla.com'?q=search", input: "mozilla.com'?q=search",
fixedURI: "http://mozilla.com'/?q=search", fixedURI: "http://mozilla.com'/?q=search",
alternateURI: "http://www.mozilla.com'/?q=search", alternateURI: "http://www.mozilla.com'/?q=search",
protocolChange: true protocolChange: true,
}, { }, {
input: "mozilla.com':search", input: "mozilla.com':search",
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "[mozilla]", input: "[mozilla]",
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "':?", input: "':?",
fixedURI: "http://'/?", fixedURI: "http://'/?",
@ -435,7 +435,7 @@ var testcases = [ {
}, { }, {
input: "' ?.com", input: "' ?.com",
keywordLookup: true, keywordLookup: true,
protocolChange: true protocolChange: true,
}, { }, {
input: "?mozilla", input: "?mozilla",
keywordLookup: true, keywordLookup: true,

View file

@ -37,61 +37,61 @@ var isWin = AppConstants.platform == "win";
var data = [ var data = [
{ {
// Valid should not be changed. // Valid should not be changed.
wrong: 'https://example.com/this/is/a/test.html', wrong: "https://example.com/this/is/a/test.html",
fixed: 'https://example.com/this/is/a/test.html', fixed: "https://example.com/this/is/a/test.html",
}, },
{ {
// Unrecognized protocols should be changed. // Unrecognized protocols should be changed.
wrong: 'whatever://this/is/a/test.html', wrong: "whatever://this/is/a/test.html",
fixed: kSearchEngineURL.replace("{searchTerms}", encodeURIComponent('whatever://this/is/a/test.html')), fixed: kSearchEngineURL.replace("{searchTerms}", encodeURIComponent("whatever://this/is/a/test.html")),
}, },
// The following tests check that when a user:password is present in the URL // The following tests check that when a user:password is present in the URL
// `user:` isn't treated as an unknown protocol thus leaking the user and // `user:` isn't treated as an unknown protocol thus leaking the user and
// password to the search engine. // password to the search engine.
{ {
wrong: 'user:pass@example.com/this/is/a/test.html', wrong: "user:pass@example.com/this/is/a/test.html",
fixed: 'http://user:pass@example.com/this/is/a/test.html', fixed: "http://user:pass@example.com/this/is/a/test.html",
}, },
{ {
wrong: 'user@example.com:8080/this/is/a/test.html', wrong: "user@example.com:8080/this/is/a/test.html",
fixed: 'http://user@example.com:8080/this/is/a/test.html', fixed: "http://user@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: 'https:pass@example.com/this/is/a/test.html', wrong: "https:pass@example.com/this/is/a/test.html",
fixed: 'https://pass@example.com/this/is/a/test.html', fixed: "https://pass@example.com/this/is/a/test.html",
}, },
{ {
wrong: 'user:pass@example.com:8080/this/is/a/test.html', wrong: "user:pass@example.com:8080/this/is/a/test.html",
fixed: 'http://user:pass@example.com:8080/this/is/a/test.html', fixed: "http://user:pass@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: 'http:user:pass@example.com:8080/this/is/a/test.html', wrong: "http:user:pass@example.com:8080/this/is/a/test.html",
fixed: 'http://user:pass@example.com:8080/this/is/a/test.html', fixed: "http://user:pass@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: 'ttp:user:pass@example.com:8080/this/is/a/test.html', wrong: "ttp:user:pass@example.com:8080/this/is/a/test.html",
fixed: 'http://user:pass@example.com:8080/this/is/a/test.html', fixed: "http://user:pass@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: 'gobbledygook:user:pass@example.com:8080/this/is/a/test.html', wrong: "gobbledygook:user:pass@example.com:8080/this/is/a/test.html",
fixed: 'http://gobbledygook:user%3Apass@example.com:8080/this/is/a/test.html', fixed: "http://gobbledygook:user%3Apass@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: 'user:@example.com:8080/this/is/a/test.html', wrong: "user:@example.com:8080/this/is/a/test.html",
fixed: 'http://user@example.com:8080/this/is/a/test.html', fixed: "http://user@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: '//user:pass@example.com:8080/this/is/a/test.html', wrong: "//user:pass@example.com:8080/this/is/a/test.html",
fixed: (isWin ? "http:" : "file://") + '//user:pass@example.com:8080/this/is/a/test.html', fixed: (isWin ? "http:" : "file://") + "//user:pass@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: '://user:pass@example.com:8080/this/is/a/test.html', wrong: "://user:pass@example.com:8080/this/is/a/test.html",
fixed: 'http://user:pass@example.com:8080/this/is/a/test.html', fixed: "http://user:pass@example.com:8080/this/is/a/test.html",
}, },
{ {
wrong: 'whatever://this/is/a@b/test.html', wrong: "whatever://this/is/a@b/test.html",
fixed: kSearchEngineURL.replace("{searchTerms}", encodeURIComponent('whatever://this/is/a@b/test.html')), fixed: kSearchEngineURL.replace("{searchTerms}", encodeURIComponent("whatever://this/is/a@b/test.html")),
}, },
]; ];
@ -101,14 +101,10 @@ var extProtocolSvc = Cc["@mozilla.org/uriloader/external-protocol-service;1"]
if (extProtocolSvc && extProtocolSvc.externalProtocolHandlerExists("mailto")) { if (extProtocolSvc && extProtocolSvc.externalProtocolHandlerExists("mailto")) {
data.push({ data.push({
wrong: "mailto:foo@bar.com", wrong: "mailto:foo@bar.com",
fixed: "mailto:foo@bar.com" fixed: "mailto:foo@bar.com",
}); });
} }
function run_test() {
run_next_test();
}
var len = data.length; var len = data.length;
// Make sure we fix what needs fixing // Make sure we fix what needs fixing
add_task(function test_fix_unknown_schemes() { add_task(function test_fix_unknown_schemes() {

View file

@ -8,10 +8,10 @@ function destroy_transient_docshell() {
function run_test() { function run_test() {
var obs = { var obs = {
observe: function(aSubject, aTopic, aData) { observe(aSubject, aTopic, aData) {
Assert.equal(aTopic, "last-pb-context-exited"); Assert.equal(aTopic, "last-pb-context-exited");
do_test_finished(); do_test_finished();
} },
}; };
var os = Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService); var os = Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService);
os.addObserver(obs, "last-pb-context-exited"); os.addObserver(obs, "last-pb-context-exited");

View file

@ -3,18 +3,12 @@ var gNotifications = 0;
ChromeUtils.import("resource://gre/modules/Services.jsm"); ChromeUtils.import("resource://gre/modules/Services.jsm");
var observer = { var observer = {
QueryInterface: function(iid) { QueryInterface: ChromeUtils.generateQI(["nsIPrivacyTransitionObserver", "nsISupportsWeakReference"]),
if (Ci.nsIPrivacyTransitionObserver.equals(iid) ||
Ci.nsISupportsWeakReference.equals(iid) ||
Ci.nsISupports.equals(iid))
return this;
throw Cr.NS_ERROR_NO_INTERFACE;
},
privateModeChanged: function(enabled) { privateModeChanged(enabled) {
gNotifications++; gNotifications++;
} },
} };
function run_test() { function run_test() {
let windowlessBrowser = Services.appShell.createWindowlessBrowser(false); let windowlessBrowser = Services.appShell.createWindowlessBrowser(false);

View file

@ -1,10 +1,10 @@
function run_test() { function run_test() {
var notifications = 0; var notifications = 0;
var obs = { var obs = {
observe: function(aSubject, aTopic, aData) { observe(aSubject, aTopic, aData) {
Assert.equal(aTopic, "last-pb-context-exited"); Assert.equal(aTopic, "last-pb-context-exited");
notifications++; notifications++;
} },
}; };
var os = Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService); var os = Cc["@mozilla.org/observer-service;1"].getService(Ci.nsIObserverService);
os.addObserver(obs, "last-pb-context-exited"); os.addObserver(obs, "last-pb-context-exited");