Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Errors

/* 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 = false
"use strict";
// iframe domains
const INNER_BASE_1 = OUTER_BASE_1;
const INNER_BASE_2 = OUTER_BASE_2;
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [["dom.events.dataTransfer.protected.enabled", false]],
});
registerCleanupFunction(async function () {
SpecialPowers.popPrefEnv();
});
await setup();
});
Services.scriptloader.loadSubScript(
this
);
runTest = runDnd;