зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1090929 - Enable the variables-view tests;r=mratcliffe
This commit is contained in:
Родитель
73921d7d11
Коммит
2cf5aadb76
|
@ -446,17 +446,17 @@ skip-if = e10s
|
|||
[browser_dbg_tracing-08.js]
|
||||
skip-if = e10s
|
||||
[browser_dbg_variables-view-01.js]
|
||||
skip-if = e10s
|
||||
skip-if = e10s && debug
|
||||
[browser_dbg_variables-view-02.js]
|
||||
skip-if = e10s
|
||||
skip-if = e10s && debug
|
||||
[browser_dbg_variables-view-03.js]
|
||||
skip-if = e10s
|
||||
skip-if = e10s && debug
|
||||
[browser_dbg_variables-view-04.js]
|
||||
skip-if = e10s
|
||||
skip-if = e10s && debug
|
||||
[browser_dbg_variables-view-05.js]
|
||||
skip-if = e10s
|
||||
skip-if = e10s && debug
|
||||
[browser_dbg_variables-view-06.js]
|
||||
skip-if = e10s
|
||||
skip-if = e10s && debug
|
||||
[browser_dbg_variables-view-accessibility.js]
|
||||
skip-if = e10s
|
||||
[browser_dbg_variables-view-data.js]
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
const TAB_URL = EXAMPLE_URL + "doc_recursion-stack.html";
|
||||
|
||||
function test() {
|
||||
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
|
||||
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
|
||||
let variables = aPanel.panelWin.DebuggerView.Variables;
|
||||
let testScope = variables.addScope("test");
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
const TAB_URL = EXAMPLE_URL + "doc_recursion-stack.html";
|
||||
|
||||
function test() {
|
||||
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
|
||||
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
|
||||
let variables = aPanel.panelWin.DebuggerView.Variables;
|
||||
let testScope = variables.addScope("test");
|
||||
let testVar = testScope.addItem("something");
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
const TAB_URL = EXAMPLE_URL + "doc_recursion-stack.html";
|
||||
|
||||
function test() {
|
||||
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
|
||||
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
|
||||
let variables = aPanel.panelWin.DebuggerView.Variables;
|
||||
let testScope = variables.addScope("test");
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
const TAB_URL = EXAMPLE_URL + "doc_recursion-stack.html";
|
||||
|
||||
function test() {
|
||||
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
|
||||
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
|
||||
let variables = aPanel.panelWin.DebuggerView.Variables;
|
||||
let testScope = variables.addScope("test");
|
||||
let testVar = testScope.addItem("something");
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
const TAB_URL = EXAMPLE_URL + "doc_recursion-stack.html";
|
||||
|
||||
function test() {
|
||||
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
|
||||
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
|
||||
let variables = aPanel.panelWin.DebuggerView.Variables;
|
||||
|
||||
let globalScope = variables.addScope("Test-Global");
|
||||
|
|
|
@ -8,11 +8,11 @@
|
|||
const TAB_URL = EXAMPLE_URL + "doc_promise.html";
|
||||
|
||||
const test = Task.async(function* () {
|
||||
const [tab, debuggee, panel] = yield initDebugger(TAB_URL);
|
||||
const [tab,, panel] = yield initDebugger(TAB_URL);
|
||||
yield ensureSourceIs(panel, "doc_promise.html", true);
|
||||
|
||||
const scopes = waitForCaretAndScopes(panel, 21);
|
||||
executeSoon(debuggee.doPause);
|
||||
callInTab(tab, "doPause");
|
||||
yield scopes;
|
||||
|
||||
const variables = panel.panelWin.DebuggerView.Variables;
|
||||
|
|
Загрузка…
Ссылка в новой задаче