Files
electron/spec/fixtures/pages/window-opener-web-view.html
2018-03-15 15:34:56 +09:00

10 lines
207 B
HTML

<html>
<body>
<script type="text/javascript" charset="utf-8">
window.onload = () => {
window.opener.postMessage({isWebViewUndefined: typeof WebView === 'undefined'}, '*')
}
</script>
</body>
</html>