electron/spec-main/fixtures/pages/webview-devtools.html
Electron Bot 3e8d77d564
chore: bump chromium to 98ebf6c3f0b7bd96bdb1a4b42208f (master) (#22999)
Co-authored-by: deepak1556 <hop2deep@gmail.com>
Co-authored-by: Electron Bot <anonymous@electronjs.org>
Co-authored-by: Jeremy Apthorp <nornagon@nornagon.net>
2020-04-13 16:39:26 -07:00

16 lines
318 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<webview nodeintegration></webview>
<script>
var wv = document.querySelector('webview')
wv.addEventListener('dom-ready', () => {
wv.openDevTools()
})
</script>
</script>
</body>
</html>