From f25bb200390be530ed42f9a1339203f322cc5a18 Mon Sep 17 00:00:00 2001 From: "bugzilla%arlen.demon.co.uk" Date: Sun, 24 Oct 2004 18:10:59 +0000 Subject: [PATCH] Bug 264102 Chrome should use document.title instead of window.title - xmlterm fixes p=me r=neil.parkwaycc.co.uk git-svn-id: svn://10.0.0.236/trunk@164289 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/extensions/xmlterm/ui/content/XMLTermChrome.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/extensions/xmlterm/ui/content/XMLTermChrome.js b/mozilla/extensions/xmlterm/ui/content/XMLTermChrome.js index 03e623cc0d2..c0173a4317d 100644 --- a/mozilla/extensions/xmlterm/ui/content/XMLTermChrome.js +++ b/mozilla/extensions/xmlterm/ui/content/XMLTermChrome.js @@ -40,7 +40,7 @@ function StartupXMLTerm() { xmltwin.xmlterm = xmltshell; if (window.arguments != null) - window.title = "xmlterm: "+window.arguments; + document.title = "xmlterm: "+window.arguments; // Initialize XMLTerm shell in content window with argvals window.xmlterm.init(xmltwin, "", window.arguments);