Bug 264102 Chrome should use document.title instead of window.title - venkman fixes

p=me r=rginda
This commit is contained in:
bugzilla%arlen.demon.co.uk 2004-10-24 17:45:21 +00:00
Родитель 1e020212f1
Коммит 04d4e14d2d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -95,7 +95,7 @@ function populateFromBreakpoint()
dialog["condition-checkbox"].checked = breakpoint.conditionEnabled;
if ("scriptWrapper" in breakpoint)
{
window.title = opener.MSG_BPPROPS_TITLE;
document.title = opener.MSG_BPPROPS_TITLE;
dialog["enabled-checkbox"].setAttribute("label",
opener.MSG_BPPROPS_ENABLED);
dialog["function-textbox"].value = breakpoint.scriptWrapper.functionName;
@ -105,7 +105,7 @@ function populateFromBreakpoint()
}
else
{
window.title = opener.MSG_FBPPROPS_TITLE;
document.title = opener.MSG_FBPPROPS_TITLE;
dialog["enabled-checkbox"].setAttribute("label",
opener.MSG_FBPPROPS_ENABLED);
dialog["function-textbox"].value = opener.MSG_VAL_NA;