From 4739a373ee52b9aa2eaef16b4e20c0bd8630f566 Mon Sep 17 00:00:00 2001 From: "danm%netscape.com" Date: Wed, 22 Aug 2007 04:53:02 +0000 Subject: [PATCH] tracking change of name of window.content to _content. (bug 33650) r=hyatt git-svn-id: svn://10.0.0.236/trunk@232506 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/suite/debugQA/content/debugQAEditorOverlay.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/suite/debugQA/content/debugQAEditorOverlay.js b/mozilla/suite/debugQA/content/debugQAEditorOverlay.js index b87d54570d9..6ae6ea6e7fb 100644 --- a/mozilla/suite/debugQA/content/debugQAEditorOverlay.js +++ b/mozilla/suite/debugQA/content/debugQAEditorOverlay.js @@ -312,7 +312,7 @@ function EditorStartLog() fs = EditorGetScriptFileSpec(); editorShell.StartLogging(fs); - window.content.focus(); + window._content.focus(); fs = null; } @@ -320,7 +320,7 @@ function EditorStartLog() function EditorStopLog() { editorShell.StopLogging(); - window.content.focus(); + window._content.focus(); } function EditorRunLog() @@ -328,7 +328,7 @@ function EditorRunLog() var fs; fs = EditorGetScriptFileSpec(); EditorExecuteScript(fs); - window.content.focus(); + window._content.focus(); }