summaryrefslogtreecommitdiffstats
path: root/toolkit/content/widgets/button.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--toolkit/content/widgets/button.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/content/widgets/button.js b/toolkit/content/widgets/button.js
index ce48fac1e9..7ca2eddbed 100644
--- a/toolkit/content/widgets/button.js
+++ b/toolkit/content/widgets/button.js
@@ -84,7 +84,7 @@
).toLowerCase();
// If the accesskey of the current button is pressed, just activate it
- if (this.accessKey.toLowerCase() == charPressedLower) {
+ if (this.accessKey?.toLowerCase() == charPressedLower) {
this.click();
return;
}
@@ -201,7 +201,7 @@
while (iterator.nextNode()) {
var test = iterator.currentNode;
if (
- test.accessKey.toLowerCase() == aAccessKeyLower &&
+ test.accessKey?.toLowerCase() == aAccessKeyLower &&
!test.disabled &&
!test.collapsed &&
!test.hidden