The onmessageerror
event handler of the DedicatedWorkerGlobalScope
interface is an EventListener
, called whenever an MessageEvent
of type messageerror
is fired on the worker—that is, when it receives a message that cannot be deserialized.
onmessageerror = function() { ... };
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'onmessageerror' in that specification. | Living Standard |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|---|
Basic support | 60 | ? | 57 (57) | ? | 47 | ? |
Available in workers | 60 | ? | 57 (57) | ? | 47 | ? |
Feature | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|
Basic support | 60 | 60 | ? | 57.0 (57) | ? | ? | 47 | ? |
Available in workers | 60 | 60 | ? | 57.0 (57) | ? | ? | 47 | ? |
© 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/DedicatedWorkerGlobalScope/onmessageerror