- From: Joshua Bell <notifications@github.com>
- Date: Wed, 18 Jan 2017 14:19:46 -0800
- To: w3c/IndexedDB <IndexedDB@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 18 January 2017 22:20:34 UTC
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