mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
0a2e5d2dc2
KeyPath [..., ''] will be serialized to have a trailing comma, when deserializing it, we should append back the empty string. Otherwise we will get inconsistent result with the KeyPath::Parse() method, causing assertions failure. Differential Revision: https://phabricator.services.mozilla.com/D24724 --HG-- extra : moz-landing-system : lando
7 lines
205 B
HTML
7 lines
205 B
HTML
<script>
|
|
window.indexedDB.open("bug1507229_1_hello").onsuccess = function(event) {
|
|
event.target.result.createMutableFile("");
|
|
window.indexedDB.deleteDatabase("bug1507229_1_hello");
|
|
}
|
|
</script>
|