Re: [w3c/IndexedDB] Integrate with window.onerror (#49)

Note: 
In FF, there is a propagation path as mentioned in https://github.com/w3c/IndexedDB/issues/49#issuecomment-237172028

Hence, for the case of 
```js
  store.put(v, k).onerror = e => {
    console.warn('this will appear'); // will not invoke window.onerror handler
  };
```
window.onerror will still be invoked if e.preventDefault() is not invoked in this onerror callback.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/49#issuecomment-295808438

Received on Thursday, 20 April 2017 16:45:34 UTC