From c11a85a426cbb50fb92be0a31850968cf188b8c1 Mon Sep 17 00:00:00 2001 From: Victor Porof Date: Mon, 19 Nov 2012 10:40:08 +0200 Subject: [PATCH] Bug 812962 - Intermittent browser_dbg_bug740825_conditional-breakpoints-02.js | an unexpected uncaught JS exception reported through window.onerror - ReferenceError: console is not defined, r=past --- .../browser_dbg_conditional-breakpoints.html | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/browser/devtools/debugger/test/browser_dbg_conditional-breakpoints.html b/browser/devtools/debugger/test/browser_dbg_conditional-breakpoints.html index 288a6447146d..19a71432e43f 100644 --- a/browser/devtools/debugger/test/browser_dbg_conditional-breakpoints.html +++ b/browser/devtools/debugger/test/browser_dbg_conditional-breakpoints.html @@ -9,19 +9,19 @@ function ermahgerd() { var a = {}; debugger; - console.log("undefined"); - console.log("null"); - console.log("42"); - console.log("true"); - console.log("'nasu'"); - console.log("/regexp/"); - console.log("{}"); - console.log("function() {}"); - console.log("(function { return false; })()"); - console.log("a"); - console.log("a !== undefined"); - console.log("a !== null"); - console.log("b"); + a = "undefined"; + a = "null"; + a = "42"; + a = "true"; + a = "'nasu'"; + a = "/regexp/"; + a = "{}"; + a = "function() {}"; + a = "(function { return false; })()"; + a = "a"; + a = "a !== undefined"; + a = "a !== null"; + a = "b"; }