mirror of
https://github.com/electron/electron.git
synced 2026-02-03 19:55:43 -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>
|