forked from mirrors/gecko-dev
Along with removing the view source standalone windows and prefs this patch: 1) Re-structures several of the view source tests that were only testing the old standalone windows to now test view source in tab. 2) Adds support viewSourceUtils.viewSource() to open a browser window when there aren't any open (for browser toolbox view source). 3) Cleans up some of the API for viewSourceUtils and removes the old deprecated ways of calling it. MozReview-Commit-ID: DI6sgZwbCf --HG-- extra : rebase_source : 64677186122f74ab95912d5f3f173cf37472458a
192 lines
6.1 KiB
JavaScript
192 lines
6.1 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
ChromeUtils.import("resource://gre/modules/PromiseUtils.jsm");
|
|
ChromeUtils.import("resource://gre/modules/Preferences.jsm", this);
|
|
|
|
/**
|
|
* Wait for view source tab after calling given function to open it.
|
|
*
|
|
* @param open - a function to open view source.
|
|
* @returns the new tab which shows the source.
|
|
*/
|
|
async function waitForViewSourceTab(open) {
|
|
let sourceLoadedPromise;
|
|
let tabPromise;
|
|
|
|
tabPromise = new Promise(resolve => {
|
|
gBrowser.tabContainer.addEventListener("TabOpen", event => {
|
|
let tab = event.target;
|
|
sourceLoadedPromise = waitForSourceLoaded(tab);
|
|
resolve(tab);
|
|
}, { once: true });
|
|
});
|
|
|
|
await open();
|
|
|
|
let tab = await tabPromise;
|
|
await sourceLoadedPromise;
|
|
return tab;
|
|
}
|
|
|
|
/**
|
|
* Opens view source for a browser.
|
|
*
|
|
* @param browser - the <xul:browser> to open view source for.
|
|
* @returns the new tab which shows the source.
|
|
*/
|
|
function openViewSourceForBrowser(browser) {
|
|
return waitForViewSourceTab(() => {
|
|
window.BrowserViewSource(browser);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Opens a view source tab. (View Source)
|
|
* within the currently selected browser in gBrowser.
|
|
*
|
|
* @returns the new tab which shows the source.
|
|
*/
|
|
async function openViewSource() {
|
|
let contentAreaContextMenuPopup =
|
|
document.getElementById("contentAreaContextMenu");
|
|
let popupShownPromise =
|
|
BrowserTestUtils.waitForEvent(contentAreaContextMenuPopup, "popupshown");
|
|
await BrowserTestUtils.synthesizeMouseAtCenter("body",
|
|
{ type: "contextmenu", button: 2 }, gBrowser.selectedBrowser);
|
|
await popupShownPromise;
|
|
|
|
return waitForViewSourceTab(async () => {
|
|
let popupHiddenPromise =
|
|
BrowserTestUtils.waitForEvent(contentAreaContextMenuPopup, "popuphidden");
|
|
let item = document.getElementById("context-viewsource");
|
|
EventUtils.synthesizeMouseAtCenter(item, {});
|
|
await popupHiddenPromise;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Opens a view source tab for a selection (View Selection Source)
|
|
* within the currently selected browser in gBrowser.
|
|
*
|
|
* @param aCSSSelector - used to specify a node within the selection to
|
|
* view the source of. It is expected that this node is
|
|
* within an existing selection.
|
|
* @returns the new tab which shows the source.
|
|
*/
|
|
async function openViewPartialSource(aCSSSelector) {
|
|
let contentAreaContextMenuPopup =
|
|
document.getElementById("contentAreaContextMenu");
|
|
let popupShownPromise =
|
|
BrowserTestUtils.waitForEvent(contentAreaContextMenuPopup, "popupshown");
|
|
await BrowserTestUtils.synthesizeMouseAtCenter(aCSSSelector,
|
|
{ type: "contextmenu", button: 2 }, gBrowser.selectedBrowser);
|
|
await popupShownPromise;
|
|
|
|
return waitForViewSourceTab(async () => {
|
|
let popupHiddenPromise =
|
|
BrowserTestUtils.waitForEvent(contentAreaContextMenuPopup, "popuphidden");
|
|
let item = document.getElementById("context-viewpartialsource-selection");
|
|
EventUtils.synthesizeMouseAtCenter(item, {});
|
|
await popupHiddenPromise;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Opens a view source tab for a frame (View Frame Source) within the
|
|
* currently selected browser in gBrowser.
|
|
*
|
|
* @param aCSSSelector - used to specify the frame to view the source of.
|
|
* @returns the new tab which shows the source.
|
|
*/
|
|
async function openViewFrameSourceTab(aCSSSelector) {
|
|
let contentAreaContextMenuPopup =
|
|
document.getElementById("contentAreaContextMenu");
|
|
let popupShownPromise =
|
|
BrowserTestUtils.waitForEvent(contentAreaContextMenuPopup, "popupshown");
|
|
await BrowserTestUtils.synthesizeMouseAtCenter(aCSSSelector,
|
|
{ type: "contextmenu", button: 2 }, gBrowser.selectedBrowser);
|
|
await popupShownPromise;
|
|
|
|
let frameContextMenu = document.getElementById("frame");
|
|
popupShownPromise =
|
|
BrowserTestUtils.waitForEvent(frameContextMenu, "popupshown");
|
|
EventUtils.synthesizeMouseAtCenter(frameContextMenu, {});
|
|
await popupShownPromise;
|
|
|
|
return waitForViewSourceTab(async () => {
|
|
let popupHiddenPromise =
|
|
BrowserTestUtils.waitForEvent(frameContextMenu, "popuphidden");
|
|
let item = document.getElementById("context-viewframesource");
|
|
EventUtils.synthesizeMouseAtCenter(item, {});
|
|
await popupHiddenPromise;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* For a given view source tab, wait for the source loading step to
|
|
* complete.
|
|
*/
|
|
function waitForSourceLoaded(tab) {
|
|
return new Promise(resolve => {
|
|
let mm = tab.linkedBrowser.messageManager;
|
|
mm.addMessageListener("ViewSource:SourceLoaded", function sourceLoaded() {
|
|
mm.removeMessageListener("ViewSource:SourceLoaded", sourceLoaded);
|
|
setTimeout(resolve, 0);
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Open a new document in a new tab, select part of it, and view the source of
|
|
* that selection. The document is not closed afterwards.
|
|
*
|
|
* @param aURI - url to load
|
|
* @param aCSSSelector - used to specify a node to select. All of this node's
|
|
* children will be selected.
|
|
* @returns the new tab which shows the source.
|
|
*/
|
|
async function openDocumentSelect(aURI, aCSSSelector) {
|
|
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, aURI);
|
|
registerCleanupFunction(function() {
|
|
gBrowser.removeTab(tab);
|
|
});
|
|
|
|
await ContentTask.spawn(gBrowser.selectedBrowser, { selector: aCSSSelector }, async function(arg) {
|
|
let element = content.document.querySelector(arg.selector);
|
|
content.getSelection().selectAllChildren(element);
|
|
});
|
|
|
|
return openViewPartialSource(aCSSSelector);
|
|
}
|
|
|
|
/**
|
|
* Open a new document in a new tab and view the source of whole page.
|
|
* The document is not closed afterwards.
|
|
*
|
|
* @param aURI - url to load
|
|
* @returns the new tab which shows the source.
|
|
*/
|
|
async function openDocument(aURI) {
|
|
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, aURI);
|
|
registerCleanupFunction(function() {
|
|
gBrowser.removeTab(tab);
|
|
});
|
|
|
|
return openViewSource();
|
|
}
|
|
|
|
function pushPrefs(...aPrefs) {
|
|
return SpecialPowers.pushPrefEnv({"set": aPrefs});
|
|
}
|
|
|
|
function waitForPrefChange(pref) {
|
|
let deferred = PromiseUtils.defer();
|
|
let observer = () => {
|
|
Preferences.ignore(pref, observer);
|
|
deferred.resolve();
|
|
};
|
|
Preferences.observe(pref, observer);
|
|
return deferred.promise;
|
|
}
|