diff --git a/modules/browser.js b/modules/browser.js index 6e17cf7c..ebe9fdb4 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -2906,6 +2906,9 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, { case 'TabAttrModified': { let tab = aEvent.originalTarget; + // on Fireofx 38 the event has no "detail" information. + if (!aEvent.detail) + return; aEvent.detail.changed.forEach(function(aAttrName) { switch (aAttrName) {