electron/spec/fixtures/api/isolated.html

20 lines
392 B
HTML
Raw Normal View History

2016-12-13 19:47:54 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Isolated World</title>
<script>
window.hello = 'world'
window.postMessage({
preloadProperty: typeof window.foo,
pageProperty: typeof window.hello,
typeofRequire: typeof require,
typeofProcess: typeof process
}, '*')
</script>
</head>
<body>
</body>
</html>