mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
399a9c9856
Differential Revision: https://phabricator.services.mozilla.com/D44682 --HG-- extra : moz-landing-system : lando
9 lines
246 B
HTML
9 lines
246 B
HTML
<script>
|
|
const db1 = window.indexedDB.open('bug1577202_1_hello', {})
|
|
db1.onupgradeneeded = function (event) {
|
|
file = event.target.result.createMutableFile('F')
|
|
event.target.result.close()
|
|
}
|
|
window.indexedDB.open('', {})
|
|
</script>
|