Bug 1243964 - Enable browser_webconsole_bug_752559_ineffective_iframe_sandbox_warning.js in e10s. r=bgrins

MozReview-Commit-ID: EGQVoeFr4VA
This commit is contained in:
Lin Clark 2016-05-24 09:20:37 -07:00
parent de2beac597
commit 4066f6ab49
2 changed files with 6 additions and 3 deletions

View File

@ -271,7 +271,6 @@ skip-if = e10s # Bug 1042253 - webconsole tests disabled with e10s
[browser_webconsole_bug_737873_mixedcontent.js]
tags = mcb
[browser_webconsole_bug_752559_ineffective_iframe_sandbox_warning.js]
skip-if = e10s # Bug 1042253 - webconsole e10s tests (Linux debug timeout)
[browser_webconsole_bug_762593_insecure_passwords_about_blank_web_console_warning.js]
[browser_webconsole_bug_762593_insecure_passwords_web_console_warning.js]
skip-if = true # Bug 1110500 - mouse event failure in test

View File

@ -26,7 +26,9 @@ const SENTINEL_MSG = "testing ineffective sandboxing message";
function test() {
loadTab(TEST_URI_WARNING).then(() => {
openConsole().then((hud) => {
content.console.log(SENTINEL_MSG);
ContentTask.spawn(gBrowser.selectedBrowser, SENTINEL_MSG, function*(msg) {
content.console.log(msg);
});
waitForMessages({
webconsole: hud,
messages: [
@ -53,7 +55,9 @@ function test() {
function testNoWarning(id) {
loadTab(TEST_URI_NOWARNING[id]).then(() => {
openConsole().then((hud) => {
content.console.log(SENTINEL_MSG);
ContentTask.spawn(gBrowser.selectedBrowser, SENTINEL_MSG, function*(msg) {
content.console.log(msg);
});
waitForMessages({
webconsole: hud,
messages: [