mirror of
https://github.com/electron/electron.git
synced 2026-02-10 07:05:35 -05:00
9 lines
192 B
HTML
9 lines
192 B
HTML
<script>
|
|
try {
|
|
let req = window.indexedDB.open('test')
|
|
} catch (e) {
|
|
const {ipcRenderer} = require('electron')
|
|
ipcRenderer.send('indexed-db-response', e.message)
|
|
}
|
|
</script>
|