mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
e2c6312d6d
--HG-- extra : transplant_source : q%C4%92%1C%BA%11/%93%85f%9D%26%A1%8AE%A1O%07%C7b
72 lines
2.4 KiB
JavaScript
72 lines
2.4 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
let newTab = gBrowser.selectedTab = gBrowser.addTab("about:blank", {skipAnimation: true});
|
|
registerCleanupFunction(function () {
|
|
gBrowser.removeTab(newTab);
|
|
});
|
|
|
|
let scriptLoader = Cc["@mozilla.org/moz/jssubscript-loader;1"].
|
|
getService(Ci.mozIJSSubScriptLoader);
|
|
let chromeUtils = {};
|
|
scriptLoader.loadSubScript("chrome://mochikit/content/tests/SimpleTest/ChromeUtils.js", chromeUtils);
|
|
|
|
let tabContainer = gBrowser.tabContainer;
|
|
var receivedDropCount = 0;
|
|
function dropListener() {
|
|
receivedDropCount++;
|
|
if (receivedDropCount == triggeredDropCount) {
|
|
is(openedTabs, validDropCount, "correct number of tabs were opened");
|
|
executeSoon(finish);
|
|
}
|
|
}
|
|
tabContainer.addEventListener("drop", dropListener, false);
|
|
registerCleanupFunction(function () {
|
|
tabContainer.removeEventListener("drop", dropListener, false);
|
|
});
|
|
|
|
var openedTabs = 0;
|
|
function tabOpenListener(e) {
|
|
openedTabs++;
|
|
let tab = e.target;
|
|
executeSoon(function () {
|
|
gBrowser.removeTab(tab);
|
|
});
|
|
}
|
|
|
|
tabContainer.addEventListener("TabOpen", tabOpenListener, false);
|
|
registerCleanupFunction(function () {
|
|
tabContainer.removeEventListener("TabOpen", tabOpenListener, false);
|
|
});
|
|
|
|
var triggeredDropCount = 0;
|
|
var validDropCount = 0;
|
|
function drop(text, valid) {
|
|
triggeredDropCount++;
|
|
if (valid)
|
|
validDropCount++;
|
|
executeSoon(function () {
|
|
// A drop type of "link" onto an existing tab would normally trigger a
|
|
// load in that same tab, but tabbrowser code in _getDragTargetTab treats
|
|
// drops on the outer edges of a tab differently (loading a new tab
|
|
// instead). The events created by synthesizeDrop have all of their
|
|
// coordinates set to 0 (screenX/screenY), so they're treated as drops
|
|
// on the outer edge of the tab, thus they open new tabs.
|
|
chromeUtils.synthesizeDrop(newTab, newTab, [[{type: "text/plain", data: text}]], "link", window, EventUtils);
|
|
});
|
|
}
|
|
|
|
// Begin and end with valid drops to make sure we wait for all drops before
|
|
// ending the test
|
|
drop("mochi.test/first", true);
|
|
drop("javascript:'bad'");
|
|
drop("jAvascript:'bad'");
|
|
drop("space bad");
|
|
drop("mochi.test/second", true);
|
|
drop("data:text/html,bad");
|
|
drop("mochi.test/third", true);
|
|
}
|