fix assertion due to deprecated getter/setter usage

This commit is contained in:
ben%netscape.com 2000-05-28 09:34:18 +00:00
Родитель 7e4163a087
Коммит 46f4dfa7ae
1 изменённых файлов: 4 добавлений и 5 удалений

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

@ -93,11 +93,10 @@ function nsWidgetStateManager ( aFrameID )
nsWidgetStateManager.prototype =
{
contentArea getter:
function()
{
return window.frames[ this.contentID ];
},
get contentArea()
{
return window.frames[ this.contentID ];
},
savePageData:
function ( aPageTag )