mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
9fd132e8a3
- Bug 1153248, re-enable a bunch of tests that now work with e10s, r=billm (c7d1a1d95) - Bug 1113086 - AudioChannel policy in Browser API - patch 1 - BrowserElementAudioChannel, r=ehsan (b25164d4f) - Bug 1158798 - Properly initialize the LookAndFeel cache in the child. r=mstange. (0f4232b5c) - Bug 1113086 - AudioChannel policy in Browser API - patch 2 - IPC communication between AudioChannelServices, r=ehsan (a2132f4d4) - Bug 1113086 - AudioChannel policy in Browser API - patch 3 - right management of audiochannel-activity events in child processes, r=ehsan (d1bd88e79) - Bug 1150727 - Enable software vsync refresh driver on Linux. r=kats (a991d3c25) - Bug 1113086 - AudioChannel policy in Browser API - patch 4 - Muted by default, e=alwu (a8978ef69) - Bug 1167064 - Patch3: Update mochitests for switching to Bluetooth APIv2. r=bz (f02729d0d) - Bug 1113086 - AudioChannel policy in Browser API - patch 5 - nsTObserverArray instead hashtables, r=ehsan, r=alwu (8f9aa5d4f) - Bug 1113086 - AudioChannel policy in Browser API - patch 6 - media-playback has to be dispatched async, r=alwu (da4da2207) - Bug 1113086 - AudioChannel policy in Browser API - patch 7 - Support non-app iframe, r=alwu (7078c3df5) - Bug 1174733 - Browser API: iframe.executeScript. r=kanru, r=bholley (5e19f9186) - Bug 1146355: Prepare build system to support Bluetooth APIs v1 and v2, r=shuang (ffe7bf5ef) - Bug 1156716: Build GATT backend as part of Bluetooth v1, r=joliu (033da499a) - Bug 1168343 - Remove the improper MOZ_ASSERT in |BluetoothServiceBluedroid::BondStateChangedNotification|. r=shuang (10d398b57) - Bug 1128386 - Handle |STATUS_FAIL| in |BondStateChangedNotification()|. r=tzimmermann (0bb76982f) - Bug 1164498: Remove |DispatchBluetoothReply| from |BluetoothServiceBluedroid|, r=btian (c027eb350) - Bug 1167064 - Patch1: Switch to bluetooth APIv2. r=shuang (37c775331) - Bug 1153717 - [Stingray] Update document reference link on InputPort API. r=baku, a=NPOTB (550bd985d) - Bug 1179718 - Rename CheckPermissions to CheckAnyPermissions. r=bz (b8e4bf1b7) - Bug 1152702 - Fix upper bounds of ContiguousEnumSerializer for BluetoothStatus and BluetoothSspVariant. r=tzimmermann (30ec5dc1a) - Bug 1162893 - Fix BluetoothGattWriteType serialization problem. f=elin, r=jocelyn (d36e089da) - Bug 1152631 - We no longer display category data for platform data in call tree, r=jsantell (6e2e877a0) - Bug 1164338 - Tests that the style markers have restyleHints. r=pbrosset (d6c357832) - Bug 1058898 - Enable e10s tests on the performance tool. r=vp (18c8324c3) - Bug 814497 - Fix nsScriptErrorWithStack constructor. r=ehsan (8096b8a8a) - Bug 814497 followup: Add missing 'override' keyword to nsScriptErrorWithStack method 'GetStack'. rs=ehsan (30889b974)
120 lines
4.4 KiB
JavaScript
120 lines
4.4 KiB
JavaScript
/* Any copyright is dedicated to the public domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Bug 1174733 - Browser API: iframe.executeScript
|
|
|
|
'use strict';
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
browserElementTestHelpers.setEnabledPref(true);
|
|
|
|
function runTest() {
|
|
|
|
const origin = 'http://example.org';
|
|
const url = 'http://example.org/tests/dom/browser-element/mochitest/file_browserElement_ExecuteScript.html';
|
|
|
|
// Test if all key=>value pairs in o1 are present in o2.
|
|
const c = (o1, o2) => Object.keys(o1).every(k => o1[k] == o2[k]);
|
|
|
|
let scriptId = 0;
|
|
|
|
const bail = () => {
|
|
ok(false, `scriptId: ${scriptId++}`);
|
|
}
|
|
|
|
SpecialPowers.pushPermissions([
|
|
{type: 'browser', allow: 1, context: document},
|
|
{type: 'browser:universalxss', allow: 1, context: document}
|
|
], function() {
|
|
let iframe = document.createElement('iframe');
|
|
iframe.setAttribute('mozbrowser', 'true');
|
|
iframe.addEventListener('mozbrowserloadend', function onload() {
|
|
iframe.removeEventListener('mozbrowserloadend', onload);
|
|
onReady(iframe);
|
|
});
|
|
iframe.src = url;
|
|
document.body.appendChild(iframe);
|
|
});
|
|
|
|
|
|
function onReady(iframe) {
|
|
iframe.executeScript('4 + 4', {url}).then(rv => {
|
|
is(rv, 8, `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('(() => {return {a:42}})()', {url})
|
|
}, bail).then(rv => {
|
|
ok(c(rv, {a:42}), `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('(() => {return {a:42}})()', {origin})
|
|
}, bail).then(rv => {
|
|
ok(c(rv, {a:42}), `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('(() => {return {a:42}})()', {origin, url})
|
|
}, bail).then(rv => {
|
|
ok(c(rv, {a:42}), `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript(`
|
|
new Promise((resolve, reject) => {
|
|
resolve(document.body.textContent.trim());
|
|
});
|
|
`, {url})
|
|
}, bail).then(rv => {
|
|
is(rv, 'foo', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript(`
|
|
new Promise((resolve, reject) => {
|
|
resolve({a:43,b:34});
|
|
});
|
|
`, {url})
|
|
}, bail).then(rv => {
|
|
ok(c(rv, {a:43,b:34}), `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript(`
|
|
… syntax error
|
|
`, {url});
|
|
}, bail).then(bail, (error) => {
|
|
is(error.name, 'SyntaxError: illegal character', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript(`
|
|
window
|
|
`, {url});
|
|
}).then(bail, (error) => {
|
|
is(error.name, 'Script last expression must be a promise or a JSON object', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript(`
|
|
new Promise((resolve, reject) => {
|
|
reject('BOOM');
|
|
});
|
|
`, {url});
|
|
}).then(bail, (error) => {
|
|
is(error.name, 'BOOM', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript(`
|
|
new Promise((resolve, reject) => {
|
|
resolve(window);
|
|
});
|
|
`, {url});
|
|
}).then(bail, (error) => {
|
|
is(error.name, 'Value returned (resolve) by promise is not a valid JSON object', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('window.btoa("a")', {url})
|
|
}, bail).then(rv => {
|
|
ok(c(rv, 'YQ=='), `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('window.wrappedJSObject.btoa("a")', {url})
|
|
}, bail).then(bail, (error) => {
|
|
is(error.name, 'TypeError: window.wrappedJSObject is undefined', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('42', {})
|
|
}).then(bail, error => {
|
|
is(error.name, 'InvalidAccessError', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('42');
|
|
}).then(bail, error => {
|
|
is(error.name, 'InvalidAccessError', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('43', { url: 'http://foo.com' });
|
|
}).then(bail, (error) => {
|
|
is(error.name, 'URL mismatches', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('43', { url: '_' });
|
|
}, bail).then(bail, (error) => {
|
|
is(error.name, 'Malformed URL', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('43', { origin: 'http://foo.com' });
|
|
}, bail).then(bail, (error) => {
|
|
is(error.name, 'Origin mismatches', `scriptId: ${scriptId++}`);
|
|
return iframe.executeScript('43', { origin: 'https://example.org' });
|
|
}, bail).then(bail, (error) => {
|
|
is(error.name, 'Origin mismatches', `scriptId: ${scriptId++}`);
|
|
SimpleTest.finish();
|
|
});
|
|
}
|
|
}
|
|
|
|
addEventListener('testready', runTest);
|