bac1c7f532
* fix: ensure standard schemes are registered in nw service process Refs https://github.com/electron/electron/pull/20546 * chore: add test * chore: apply suggestions from code review Co-Authored-By: Jeremy Apthorp <jeremya@chromium.org> Co-authored-by: Jeremy Apthorp <jeremya@chromium.org>
18 lines
563 B
JavaScript
18 lines
563 B
JavaScript
const { app, webContents, protocol, session } = require('electron');
|
|
|
|
protocol.registerSchemesAsPrivileged([
|
|
{ scheme: 'test', privileges: { standard: true, secure: true } }
|
|
]);
|
|
|
|
app.whenReady().then(function () {
|
|
const ses = session.fromPartition('persist:test-standard-shutdown');
|
|
const web = webContents.create({ session: ses });
|
|
|
|
ses.protocol.registerStringProtocol('test', (request, callback) => {
|
|
callback('Hello World!');
|
|
});
|
|
|
|
web.webContents.loadURL('test://abc/hello.txt');
|
|
|
|
web.webContents.on('did-finish-load', () => app.quit());
|
|
});
|