Re: [w3c/IndexedDB] Error events from open/deleteDatabase requests - cancelable? bubbles? (#86)

For reference, all of (IE11, Safari 10, Chrome 55, Firefox 50) report `true true` for:

```js
r = indexedDB.open('db'+Date.now());
r.onupgradeneeded = function(e) { r.transaction.abort(); };
r.onerror = function(e) { console.log(e.cancelable, e.bubbles); };
```

I suspect it's web compatible to change bubbles to false in all implementations to match the spec; odds are no-one is looking at it. Or we can leave it alone in spec as a quirk. Opinions?


-- 
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/86#issuecomment-273620182

Received on Wednesday, 18 January 2017 22:20:34 UTC