2016-07-19 20:47:33 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const {classes: Cc, interfaces: Ci, utils: Cu, results: Cr} = Components;
|
|
|
|
|
|
|
|
Cu.importGlobalProperties(["URL"]);
|
|
|
|
|
|
|
|
this.EXPORTED_SYMBOLS = ["navigate"];
|
|
|
|
|
2017-07-26 15:11:53 +03:00
|
|
|
/** @namespace */
|
2016-07-19 20:47:33 +03:00
|
|
|
this.navigate = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines if we expect to get a DOM load event (DOMContentLoaded)
|
2017-07-26 15:11:53 +03:00
|
|
|
* on navigating to the <code>future</code> URL.
|
2016-07-19 20:47:33 +03:00
|
|
|
*
|
2017-07-07 18:34:27 +03:00
|
|
|
* @param {string} current
|
|
|
|
* URL the browser is currently visiting.
|
|
|
|
* @param {string=} future
|
|
|
|
* Destination URL, if known.
|
2016-07-19 20:47:33 +03:00
|
|
|
*
|
|
|
|
* @return {boolean}
|
2017-07-07 18:34:27 +03:00
|
|
|
* Full page load would be expected if future is followed.
|
2016-07-19 20:47:33 +03:00
|
|
|
*
|
|
|
|
* @throws TypeError
|
2017-07-26 15:11:53 +03:00
|
|
|
* If <code>current</code> is not defined, or any of
|
|
|
|
* <code>current</code> or <code>future</code> are invalid URLs.
|
2016-07-19 20:47:33 +03:00
|
|
|
*/
|
2017-07-07 18:34:27 +03:00
|
|
|
navigate.isLoadEventExpected = function(current, future = undefined) {
|
2016-07-19 20:47:33 +03:00
|
|
|
// assume we will go somewhere exciting
|
2017-07-07 18:34:27 +03:00
|
|
|
if (typeof current == "undefined") {
|
|
|
|
throw TypeError("Expected at least one URL");
|
2016-07-19 20:47:33 +03:00
|
|
|
}
|
|
|
|
|
2017-07-07 18:34:27 +03:00
|
|
|
// Assume we will go somewhere exciting
|
|
|
|
if (typeof future == "undefined") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
let cur = new URL(current);
|
|
|
|
let fut = new URL(future);
|
|
|
|
|
|
|
|
// Assume javascript:<whatever> will modify the current document
|
|
|
|
// but this is not an entirely safe assumption to make,
|
|
|
|
// considering it could be used to set window.location
|
|
|
|
if (fut.protocol == "javascript:") {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If hashes are present and identical
|
|
|
|
if (cur.href.includes("#") && fut.href.includes("#") &&
|
|
|
|
cur.hash === fut.hash) {
|
|
|
|
return false;
|
2016-07-19 20:47:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|