electron/spec/fixtures/crash-cases/webview-remove-on-wc-close/index.html

7 lines
236 B
HTML

<button id="closeBtn">close webview</button>
<webview id="webview" src="webview.html"></webview>
<script>
webview.onclose = () => webview.remove()
closeBtn.onclick = () => webview.executeJavaScript('window.close()', true)
</script>