mirror of
https://github.com/electron/electron.git
synced 2026-01-30 01:38:49 -05:00
9 lines
208 B
HTML
9 lines
208 B
HTML
<script>
|
|
try {
|
|
window.openDatabase('test', '1.0', 'test database', 65536)
|
|
} catch (e) {
|
|
const {ipcRenderer} = require('electron')
|
|
ipcRenderer.send('web-sql-response', e.message)
|
|
}
|
|
</script>
|