From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- .../test/general/browser_contentAltClick.js | 205 +++++++++++++++++++++ 1 file changed, 205 insertions(+) create mode 100644 browser/base/content/test/general/browser_contentAltClick.js (limited to 'browser/base/content/test/general/browser_contentAltClick.js') diff --git a/browser/base/content/test/general/browser_contentAltClick.js b/browser/base/content/test/general/browser_contentAltClick.js new file mode 100644 index 0000000000..5f659d3351 --- /dev/null +++ b/browser/base/content/test/general/browser_contentAltClick.js @@ -0,0 +1,205 @@ +/* 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/. */ + +/** + * Test for Bug 1109146. + * The tests opens a new tab and alt + clicks to download files + * and confirms those files are on the download list. + * + * The difference between this and the test "browser_contentAreaClick.js" is that + * the code path in e10s uses the ClickHandler actor instead of browser.js::contentAreaClick() util. + */ +"use strict"; + +ChromeUtils.defineESModuleGetters(this, { + Downloads: "resource://gre/modules/Downloads.sys.mjs", +}); + +function setup() { + Services.prefs.setBoolPref("browser.altClickSave", true); + + let testPage = + "data:text/html," + + '

Common link

' + + '

MathML XLink

' + + '

SVG XLink


' + + '' + + ''; + + return BrowserTestUtils.openNewForegroundTab(gBrowser, testPage); +} + +async function clean_up() { + // Remove downloads. + let downloadList = await Downloads.getList(Downloads.ALL); + let downloads = await downloadList.getAll(); + for (let download of downloads) { + await downloadList.remove(download); + await download.finalize(true); + } + // Remove download history. + await PlacesUtils.history.clear(); + + Services.prefs.clearUserPref("browser.altClickSave"); + BrowserTestUtils.removeTab(gBrowser.selectedTab); +} + +add_task(async function test_alt_click() { + await setup(); + + let downloadList = await Downloads.getList(Downloads.ALL); + let downloads = []; + let downloadView; + // When 1 download has been attempted then resolve the promise. + let finishedAllDownloads = new Promise(resolve => { + downloadView = { + onDownloadAdded(aDownload) { + downloads.push(aDownload); + resolve(); + }, + }; + }); + await downloadList.addView(downloadView); + await BrowserTestUtils.synthesizeMouseAtCenter( + "#commonlink", + { altKey: true }, + gBrowser.selectedBrowser + ); + + // Wait for all downloads to be added to the download list. + await finishedAllDownloads; + await downloadList.removeView(downloadView); + + is(downloads.length, 1, "1 downloads"); + is( + downloads[0].source.url, + "http://mochi.test/moz/", + "Downloaded #commonlink element" + ); + + await clean_up(); +}); + +add_task(async function test_alt_click_shadow_dom() { + await setup(); + + let downloadList = await Downloads.getList(Downloads.ALL); + let downloads = []; + let downloadView; + // When 1 download has been attempted then resolve the promise. + let finishedAllDownloads = new Promise(resolve => { + downloadView = { + onDownloadAdded(aDownload) { + downloads.push(aDownload); + resolve(); + }, + }; + }); + await downloadList.addView(downloadView); + await BrowserTestUtils.synthesizeMouseAtCenter( + "#host", + { altKey: true }, + gBrowser.selectedBrowser + ); + + // Wait for all downloads to be added to the download list. + await finishedAllDownloads; + await downloadList.removeView(downloadView); + + is(downloads.length, 1, "1 downloads"); + is( + downloads[0].source.url, + "http://mochi.test/moz/", + "Downloaded #commonlink element in shadow DOM." + ); + + await clean_up(); +}); + +add_task(async function test_alt_click_on_xlinks() { + await setup(); + + let downloadList = await Downloads.getList(Downloads.ALL); + let downloads = []; + let downloadView; + // When all 2 downloads have been attempted then resolve the promise. + let finishedAllDownloads = new Promise(resolve => { + downloadView = { + onDownloadAdded(aDownload) { + downloads.push(aDownload); + if (downloads.length == 2) { + resolve(); + } + }, + }; + }); + await downloadList.addView(downloadView); + await BrowserTestUtils.synthesizeMouseAtCenter( + "#mathlink", + { altKey: true }, + gBrowser.selectedBrowser + ); + await BrowserTestUtils.synthesizeMouseAtCenter( + "#svgxlink", + { altKey: true }, + gBrowser.selectedBrowser + ); + + // Wait for all downloads to be added to the download list. + await finishedAllDownloads; + await downloadList.removeView(downloadView); + + is(downloads.length, 2, "2 downloads"); + is( + downloads[0].source.url, + "http://mochi.test/moz/", + "Downloaded #mathlink element" + ); + is( + downloads[1].source.url, + "http://mochi.test/moz/", + "Downloaded #svgxlink element" + ); + + await clean_up(); +}); + +// Alt+Click a link in a frame from another domain as the outer document. +add_task(async function test_alt_click_in_frame() { + await setup(); + + let downloadList = await Downloads.getList(Downloads.ALL); + let downloads = []; + let downloadView; + // When the download has been attempted, resolve the promise. + let finishedAllDownloads = new Promise(resolve => { + downloadView = { + onDownloadAdded(aDownload) { + downloads.push(aDownload); + resolve(); + }, + }; + }); + + await downloadList.addView(downloadView); + await BrowserTestUtils.synthesizeMouseAtCenter( + "#linkToExample", + { altKey: true }, + gBrowser.selectedBrowser.browsingContext.children[0] + ); + + // Wait for all downloads to be added to the download list. + await finishedAllDownloads; + await downloadList.removeView(downloadView); + + is(downloads.length, 1, "1 downloads"); + is( + downloads[0].source.url, + // eslint-disable-next-line @microsoft/sdl/no-insecure-url + "http://example.org/", + "Downloaded link in iframe." + ); + + await clean_up(); +}); -- cgit v1.2.3