2009-06-20 17:04:07 -07:00
|
|
|
function test()
|
|
|
|
{
|
2010-05-26 08:28:25 -07:00
|
|
|
waitForExplicitFinish();
|
|
|
|
|
2009-06-20 17:04:07 -07:00
|
|
|
// ---- Test dragging the proxy icon ---
|
|
|
|
var value = content.location.href;
|
|
|
|
var urlString = value + "\n" + content.document.title;
|
|
|
|
var htmlString = "<a href=\"" + value + "\">" + value + "</a>";
|
|
|
|
var expected = [ [
|
2010-02-07 07:44:48 -08:00
|
|
|
{ type : "text/x-moz-url",
|
|
|
|
data : urlString },
|
|
|
|
{ type : "text/uri-list",
|
|
|
|
data : value },
|
|
|
|
{ type : "text/plain",
|
|
|
|
data : value },
|
|
|
|
{ type : "text/html",
|
|
|
|
data : htmlString }
|
2009-06-20 17:04:07 -07:00
|
|
|
] ];
|
|
|
|
// set the valid attribute so dropping is allowed
|
2010-09-08 08:10:46 -07:00
|
|
|
var oldstate = gURLBar.getAttribute("pageproxystate");
|
|
|
|
gURLBar.setAttribute("pageproxystate", "valid");
|
|
|
|
var dt = EventUtils.synthesizeDragStart(document.getElementById("identity-box"), expected);
|
2009-06-20 17:04:07 -07:00
|
|
|
is(dt, null, "drag on proxy icon");
|
2010-09-08 08:10:46 -07:00
|
|
|
gURLBar.setAttribute("pageproxystate", oldstate);
|
2009-12-11 21:17:40 -08:00
|
|
|
// Now, the identity information panel is opened by the proxy icon click.
|
|
|
|
// We need to close it for next tests.
|
|
|
|
EventUtils.synthesizeKey("VK_ESCAPE", {}, window);
|
2010-05-26 08:28:25 -07:00
|
|
|
|
|
|
|
// now test dragging onto a tab
|
2010-06-14 09:50:28 -07:00
|
|
|
var tab = gBrowser.addTab("about:blank", {skipAnimation: true});
|
2010-06-14 06:10:23 -07:00
|
|
|
var browser = gBrowser.getBrowserForTab(tab);
|
2010-05-26 08:28:25 -07:00
|
|
|
|
2010-06-14 06:10:23 -07:00
|
|
|
browser.addEventListener("load", function () {
|
|
|
|
is(browser.contentWindow.location, "http://mochi.test:8888/", "drop on tab");
|
|
|
|
gBrowser.removeTab(tab);
|
2010-05-26 08:28:25 -07:00
|
|
|
finish();
|
|
|
|
}, true);
|
|
|
|
|
2010-06-25 14:51:17 -07:00
|
|
|
EventUtils.synthesizeDrop(tab, tab, [[{type: "text/uri-list", data: "http://mochi.test:8888/"}]], "copy", window);
|
2009-06-20 17:04:07 -07:00
|
|
|
}
|