Bug 721006 - Crash when setting a very large document.title. r=mfinkle

This commit is contained in:
Doug Turner 2012-02-01 22:44:18 -05:00
Родитель 853d196cb5
Коммит 383d9f000d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1785,7 +1785,7 @@ Tab.prototype = {
gecko: {
type: "DOMTitleChanged",
tabID: this.id,
title: aEvent.target.title
title: aEvent.target.title.substring(0, 255)
}
});
break;