summaryrefslogtreecommitdiffstats
path: root/webbrowser/modules
diff options
context:
space:
mode:
Diffstat (limited to 'webbrowser/modules')
-rw-r--r--webbrowser/modules/AutoCompletePopup.jsm9
1 files changed, 4 insertions, 5 deletions
diff --git a/webbrowser/modules/AutoCompletePopup.jsm b/webbrowser/modules/AutoCompletePopup.jsm
index c3698f9..ec2de26 100644
--- a/webbrowser/modules/AutoCompletePopup.jsm
+++ b/webbrowser/modules/AutoCompletePopup.jsm
@@ -1,7 +1,3 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
"use strict";
const Cc = Components.classes;
@@ -42,7 +38,10 @@ var AutoCompleteTreeView = {
getParentIndex: function(idx) { return -1; },
hasNextSibling: function(idx, after) { return idx < this.results.length - 1 },
toggleOpenState: function(idx) { },
- getCellProperties: function(idx, column) { return this.results[idx].style || ""; },
+ getCellProperties: function(idx, column) {
+ if (this.results && this.results[idx]) { return this.results[idx].style || ""; }
+ else { return ""; }
+ },
getRowProperties: function(idx) { return ""; },
getImageSrc: function(idx, column) { return null; },
getProgressMode : function(idx, column) { },