2016-12-13 19:47:54 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Isolated World</title>
|
|
|
|
<script>
|
|
|
|
window.hello = 'world'
|
2016-12-15 23:23:45 +00:00
|
|
|
Array.prototype.push = 3
|
|
|
|
Function.prototype.apply = true
|
2017-01-12 00:36:59 +00:00
|
|
|
|
|
|
|
const opened = window.open()
|
|
|
|
opened.close()
|
|
|
|
|
2016-12-13 19:47:54 +00:00
|
|
|
window.postMessage({
|
|
|
|
preloadProperty: typeof window.foo,
|
|
|
|
pageProperty: typeof window.hello,
|
|
|
|
typeofRequire: typeof require,
|
2016-12-15 23:23:45 +00:00
|
|
|
typeofProcess: typeof process,
|
|
|
|
typeofArrayPush: typeof Array.prototype.push,
|
2017-01-05 17:33:54 +00:00
|
|
|
typeofFunctionApply: typeof Function.prototype.apply,
|
2017-01-12 00:36:59 +00:00
|
|
|
typeofPreloadExecuteJavaScriptProperty: typeof window.preloadExecuteJavaScriptProperty,
|
2017-01-16 20:56:39 +00:00
|
|
|
typeofOpenedWindow: typeof opened,
|
|
|
|
documentHidden: document.hidden,
|
|
|
|
documentVisibilityState: document.visibilityState
|
2016-12-13 19:47:54 +00:00
|
|
|
}, '*')
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|