Bug 221934 - Display page title in DOM Inspector Window

patch by Michael Gall <michael@wakeless.net>
r=db48x, sr=neil
This commit is contained in:
asqueella%gmail.com 2007-02-05 22:45:57 +00:00
Родитель 1784054605
Коммит af197d575f
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -179,7 +179,17 @@ InspectorApp.prototype =
if (aEvent.target == this.mDocPanel.viewer &&
aEvent.subject && "location" in aEvent.subject) {
this.locationText = aEvent.subject.location; // display document url
var docTitle = aEvent.subject.title || aEvent.subject.location;
if (/Mac/.test(navigator.platform)) {
document.title = docTitle;
} else {
document.title = docTitle + " - " +
document.documentElement.getAttribute("title");
}
}
break;
}
}
},