1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
"use strict";
let BASE_URL = getRootDirectory(gTestPath).replace(
"chrome://mochitests/content/",
"https://example.com/"
);
const DUMMY_URL = BASE_URL + "file_test_browser_bookmarklets.html";
function makeBookmarkFor(url, keyword) {
return Promise.all([
PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
title: "bookmarklet",
url,
}),
PlacesUtils.keywords.insert({ url, keyword }),
]);
}
/* Test Description:
* 1 - Load a Page with CSP script-src: none
* 2 - Create a bookmarklet with javascript:window.open('about:blank')
* 3 - Select and enter the bookmarklet
* A new tab with about:blank should be opened
*/
add_task(async function openKeywordBookmarkWithWindowOpen() {
// This is the current default, but let's not assume that...
await SpecialPowers.pushPrefEnv({
set: [
["browser.link.open_newwindow", 3],
["dom.disable_open_during_load", true],
],
});
let moztab;
let tabOpened = BrowserTestUtils.openNewForegroundTab(
gBrowser,
DUMMY_URL
).then(tab => {
moztab = tab;
});
let keywordForBM = "openNewWindowBookmarklet";
let bookmarkInfo;
let bookmarkCreated = makeBookmarkFor(
`javascript: window.open("about:blank")`,
keywordForBM
).then(values => {
bookmarkInfo = values[0];
});
await Promise.all([tabOpened, bookmarkCreated]);
registerCleanupFunction(function () {
return Promise.all([
PlacesUtils.bookmarks.remove(bookmarkInfo),
PlacesUtils.keywords.remove(keywordForBM),
]);
});
gURLBar.value = keywordForBM;
gURLBar.focus();
let tabCreatedPromise = BrowserTestUtils.waitForEvent(
gBrowser.tabContainer,
"TabOpen"
);
EventUtils.synthesizeKey("KEY_Enter");
info("Waiting for tab being created");
let { target: tab } = await tabCreatedPromise;
info("Got tab");
let browser = tab.linkedBrowser;
if (!browser.currentURI || browser.currentURI.spec != "about:blank") {
info("Waiting for browser load");
await BrowserTestUtils.browserLoaded(browser, false, "about:blank");
}
is(
browser.currentURI && browser.currentURI.spec,
"about:blank",
"Tab with expected URL loaded."
);
info("Waiting to remove tab");
BrowserTestUtils.removeTab(tab);
BrowserTestUtils.removeTab(moztab);
});
|