mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D4563 --HG-- extra : source : 390737876a61c5da48a1957d284d3c315fbd541a extra : intermediate-source : f0b190c1cfb5d2df482f1051bbc0ff98de71235b
72 lines
2.3 KiB
JavaScript
72 lines
2.3 KiB
JavaScript
function LocationChangeListener(browser) {
|
|
this.browser = browser;
|
|
browser.addProgressListener(this);
|
|
}
|
|
|
|
LocationChangeListener.prototype = {
|
|
wasSynthetic: false,
|
|
browser: null,
|
|
|
|
destroy() {
|
|
this.browser.removeProgressListener(this);
|
|
},
|
|
|
|
onLocationChange(webProgress, request, location, flags) {
|
|
this.wasSynthetic = this.browser.isSyntheticDocument;
|
|
},
|
|
|
|
QueryInterface: ChromeUtils.generateQI([Ci.nsIWebProgressListener,
|
|
Ci.nsISupportsWeakReference]),
|
|
};
|
|
|
|
const FILES = gTestPath.replace("browser_isSynthetic.js", "")
|
|
.replace("chrome://mochitests/content/", "http://example.com/");
|
|
|
|
function waitForPageShow(browser) {
|
|
return ContentTask.spawn(browser, null, async function() {
|
|
ChromeUtils.import("resource://gre/modules/PromiseUtils.jsm");
|
|
await new Promise(resolve => {
|
|
let listener = () => {
|
|
removeEventListener("pageshow", listener, true);
|
|
resolve();
|
|
};
|
|
addEventListener("pageshow", listener, true);
|
|
});
|
|
});
|
|
}
|
|
|
|
add_task(async function() {
|
|
let tab = BrowserTestUtils.addTab(gBrowser, "about:blank");
|
|
let browser = tab.linkedBrowser;
|
|
await BrowserTestUtils.browserLoaded(browser);
|
|
let listener = new LocationChangeListener(browser);
|
|
|
|
is(browser.isSyntheticDocument, false, "Should not be synthetic");
|
|
|
|
let loadPromise = waitForPageShow(browser);
|
|
BrowserTestUtils.loadURI(browser, "data:text/html;charset=utf-8,<html/>");
|
|
await loadPromise;
|
|
is(listener.wasSynthetic, false, "Should not be synthetic");
|
|
is(browser.isSyntheticDocument, false, "Should not be synthetic");
|
|
|
|
loadPromise = waitForPageShow(browser);
|
|
BrowserTestUtils.loadURI(browser, FILES + "empty.png");
|
|
await loadPromise;
|
|
is(listener.wasSynthetic, true, "Should be synthetic");
|
|
is(browser.isSyntheticDocument, true, "Should be synthetic");
|
|
|
|
loadPromise = waitForPageShow(browser);
|
|
browser.goBack();
|
|
await loadPromise;
|
|
is(listener.wasSynthetic, false, "Should not be synthetic");
|
|
is(browser.isSyntheticDocument, false, "Should not be synthetic");
|
|
|
|
loadPromise = waitForPageShow(browser);
|
|
browser.goForward();
|
|
await loadPromise;
|
|
is(listener.wasSynthetic, true, "Should be synthetic");
|
|
is(browser.isSyntheticDocument, true, "Should be synthetic");
|
|
|
|
listener.destroy();
|
|
gBrowser.removeTab(tab);
|
|
});
|