2009-06-20 17:04:07 -07:00
|
|
|
function test()
|
|
|
|
{
|
|
|
|
// ---- 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
|
|
|
|
var proxyicon = document.getElementById("page-proxy-favicon")
|
|
|
|
var oldstate = proxyicon.getAttribute("pageproxystate");
|
|
|
|
proxyicon.setAttribute("pageproxystate", "valid");
|
|
|
|
var dt = EventUtils.synthesizeDragStart(proxyicon, expected);
|
|
|
|
is(dt, null, "drag on proxy icon");
|
|
|
|
proxyicon.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);
|
2009-06-20 17:04:07 -07:00
|
|
|
}
|