mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,41 @@
|
|||
/* Any copyright is dedicated to the public domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
// Bug 769182 - window.open to a different origin should load the page.
|
||||
|
||||
"use strict";
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
browserElementTestHelpers.setEnabledPref(true);
|
||||
browserElementTestHelpers.addPermission();
|
||||
|
||||
function runTest() {
|
||||
var iframe = document.createElement('iframe');
|
||||
iframe.setAttribute('mozbrowser', 'true');
|
||||
|
||||
iframe.addEventListener('mozbrowseropenwindow', function(e) {
|
||||
ok(true, 'Got first window.open call');
|
||||
|
||||
e.detail.frameElement.addEventListener('mozbrowseropenwindow', function(e) {
|
||||
ok(true, 'Got second window.open call');
|
||||
document.body.appendChild(e.detail.frameElement);
|
||||
});
|
||||
|
||||
e.detail.frameElement.addEventListener('mozbrowsershowmodalprompt', function(e) {
|
||||
ok(true, 'Got alert from second window.');
|
||||
SimpleTest.finish();
|
||||
});
|
||||
|
||||
document.body.appendChild(e.detail.frameElement);
|
||||
});
|
||||
|
||||
// DifferentOrigin.html?1 calls
|
||||
//
|
||||
// window.open('http://example.com/.../DifferentOrigin.html?2'),
|
||||
//
|
||||
// which calls alert().
|
||||
|
||||
iframe.src = 'http://example.org/tests/dom/browser-element/mochitest/file_browserElement_OpenWindowDifferentOrigin.html?1';
|
||||
document.body.appendChild(iframe);
|
||||
}
|
||||
|
||||
addEventListener('testready', runTest);
|
||||
Loading…
Add table
Add a link
Reference in a new issue