Bug 865745 - Continue to ignore onTabClose exception in metro 8 Session Store. r=me

This commit is contained in:
Bobby Holley 2013-06-30 09:00:20 -06:00
Родитель 20ac01a955
Коммит 76f485733c
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -370,8 +370,11 @@ SessionStore.prototype = {
if (aWindow.Browser.tabs.length > 0) {
// Bundle this browser's data and extra data and save in the closedTabs
// window property
//
// NB: The access to aBrowser.__SS_extdata throws during automation (in
// browser_msgmgr_01). See bug 888736.
let data = aBrowser.__SS_data;
data.extData = aBrowser.__SS_extdata;
try { data.extData = aBrowser.__SS_extdata; } catch (e) { }
this._windows[aWindow.__SSID].closedTabs.unshift(data);
let length = this._windows[aWindow.__SSID].closedTabs.length;