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
83
84
85
86
87
88
89
90
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
add_task(function*() {
let HOMEPAGE_PREF = "browser.startup.homepage";
let homepageStr = Cc["@mozilla.org/supports-string;1"]
.createInstance(Ci.nsISupportsString);
homepageStr.data = "about:mozilla";
yield pushPrefs([HOMEPAGE_PREF, homepageStr, Ci.nsISupportsString]);
let scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"].
getService(Ci.mozIJSSubScriptLoader);
let EventUtils = {};
scriptLoader.loadSubScript("chrome://mochikit/content/tests/SimpleTest/EventUtils.js", EventUtils);
// Since synthesizeDrop triggers the srcElement, need to use another button.
let dragSrcElement = document.getElementById("downloads-button");
ok(dragSrcElement, "Downloads button exists");
let homeButton = document.getElementById("home-button");
ok(homeButton, "home button present");
function* drop(dragData, homepage) {
let setHomepageDialogPromise = BrowserTestUtils.domWindowOpened();
EventUtils.synthesizeDrop(dragSrcElement, homeButton, dragData, "copy", window);
let setHomepageDialog = yield setHomepageDialogPromise;
ok(true, "dialog appeared in response to home button drop");
yield BrowserTestUtils.waitForEvent(setHomepageDialog, "load", false);
let setHomepagePromise = new Promise(function(resolve) {
let observer = {
QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver]),
observe: function(subject, topic, data) {
is(topic, "nsPref:changed", "observed correct topic");
is(data, HOMEPAGE_PREF, "observed correct data");
let modified = Services.prefs.getComplexValue(HOMEPAGE_PREF,
Ci.nsISupportsString);
is(modified.data, homepage, "homepage is set correctly");
Services.prefs.removeObserver(HOMEPAGE_PREF, observer);
Services.prefs.setComplexValue(HOMEPAGE_PREF,
Ci.nsISupportsString, homepageStr);
resolve();
}
};
Services.prefs.addObserver(HOMEPAGE_PREF, observer, false);
});
setHomepageDialog.document.documentElement.acceptDialog();
yield setHomepagePromise;
}
function dropInvalidURI() {
return new Promise(resolve => {
let consoleListener = {
observe: function (m) {
if (m.message.includes("NS_ERROR_DOM_BAD_URI")) {
ok(true, "drop was blocked");
resolve();
}
}
};
Services.console.registerListener(consoleListener);
registerCleanupFunction(function () {
Services.console.unregisterListener(consoleListener);
});
executeSoon(function () {
info("Attempting second drop, of a javascript: URI");
// The drop handler throws an exception when dragging URIs that inherit
// principal, e.g. javascript:
expectUncaughtException();
EventUtils.synthesizeDrop(dragSrcElement, homeButton, [[{type: "text/plain", data: "javascript:8888"}]], "copy", window);
});
});
}
yield* drop([[{type: "text/plain",
data: "http://mochi.test:8888/"}]],
"http://mochi.test:8888/");
yield* drop([[{type: "text/plain",
data: "http://mochi.test:8888/\nhttp://mochi.test:8888/b\nhttp://mochi.test:8888/c"}]],
"http://mochi.test:8888/|http://mochi.test:8888/b|http://mochi.test:8888/c");
yield dropInvalidURI();
});
|