W3cubDocs

/DOM

Notification.onerror

The onerror property of the Notification interface specifies an event listener to receive error events. These events occur when something goes wrong with a Notification (in many cases an error preventing the notification from being displayed.)

Syntax

Notification.onerror = EventListener;

Value

A function which serves as the event handler for the error event. When an error occurs, the specified function will be called. If null, no error handler is in effect.

Specifications

Specification Status Comment
Notifications API
The definition of 'onerror' in that specification.
Living Standard Initial specification.

Browser compatibility

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari
Basic support 5webkit[1]
22
(Yes) 4.0 moz[2]
22
No support 25 6[3]
Available in workers 45 (Yes) 41.0 (41.0) ? 32 ?
Secure contexts only 62 ? ? ? 49 ?
icon 5webkit[1]
22
(Yes) 4.0 moz[2]
22
No support 25 No support
silent 43 No support No support No support 30 No support
noscreen, sticky No support No support No support No support No support No support
sound No support No support No support No support No support No support
renotify 50 No support No support No support 37 No support
Promise-based Notification.requestPermission() 46 (Yes) 47.0 (47.0) ? 40 No support
vibrate, actions 53 No support ? ? 39 ?
badge 53 No support ? ? 39 ?
image 53 No support ? ? 40 ?
Feature Android Webview Chrome for Android Webview Edge Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support ?

(Yes)

(Yes) 4.0moz[2]
22
1.0.1moz[2]
1.2
No support (Yes) No support
Available in workers 45 45 (Yes) 41.0 (41.0) ? ? 32 ?
Secure contexts only 62 62 ? ? ? ? 49 ?
icon ? (Yes) (Yes) 4.0moz[2]
22
1.0.1moz[2]
1.2
No support (Yes) No support
silent 43 43 No support No support No support No support 30 No support
noscreen, sticky No support No support No support No support No support No support No support No support
sound No support No support No support No support No support No support No support No support
renotify 50 50 No support No support No support No support 37 No support
Promise-based Notification.requestPermission() 46 46 (Yes) 47.0 (47.0) ? ? 40 ?
vibrate, actions 53 53 No support ? ? ? 39 ?
badge 53 53 No support ? ? ? 39 ?
image 53 53 No support ? ? ? 40 ?

[1] Before Chrome 22, the support for notification followed an old prefixed version of the specification and used the navigator.webkitNotifications object to instantiate a new notification.

Before Chrome 32, Notification.permission was not supported.

Before Chrome 42, service worker additions were not supported.

Starting in Chrome 49, notifications do not work in incognito mode.

[2] Prior to Firefox 22 (Firefox OS <1.2), the instantiation of a new notification must be done with the navigator.mozNotification object through its createNotification method.

Prior to Firefox 22 (Firefox OS <1.2), the Notification was displayed when calling the show method and supported only the click and close events.

Nick Desaulniers wrote a Notification shim to cover both newer and older implementations.

One particular Firefox OS issue is that you can pass a path to an icon to use in the notification, but if the app is packaged you cannot use a relative path like /my_icon.png. You also can't use window.location.origin + "/my_icon.png" because window.location.origin is null in packaged apps. The manifest origin field fixes this, but it is only available in Firefox OS 1.1+. A potential solution for supporting Firefox OS <1.1 is to pass an absolute URL to an externally hosted version of the icon. This is less than ideal as the notification is displayed immediately without the icon, then the icon is fetched, but it works on all versions of Firefox OS.

When using notifications in a Firefox OS app, be sure to add the desktop-notification permission in your manifest file. Notifications can be used at any permission level, hosted or above:

"permissions": { "desktop-notification": {} }

[3] Safari started to support notification with Safari 6, but only on Mac OSX 10.8+ (Mountain Lion).

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Notification/onerror