Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Test that drag and drop events are sent at the right time. Includes tests for
// dragging between windows and iframes, where the window tabs are of different
// origin, containing same-origin (as the outer frame) iframes.
// dom.events.dataTransfer.protected.enabled = true
"use strict";
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [["dom.events.dataTransfer.protected.enabled", true]],
});
registerCleanupFunction(async function () {
SpecialPowers.popPrefEnv();
});
await setup({
outerURL1: kBaseUrl1 + "browser_dragdrop_outer.html",
outerURL2: kBaseUrl2 + "browser_dragdrop_outer.html",
innerURL1: kBaseUrl1 + "browser_dragdrop_inner.html",
innerURL2: kBaseUrl2 + "browser_dragdrop_inner.html",
});
});
Services.scriptloader.loadSubScript(
this
);