mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* feat: enable innerWidth and innerHeight for window open * update comment for added special innerWidth and innerHeight * update 100 min spec requirement handling * update testing to include getContentSize * update macOS min requirement handling * adjust refactored consts * update const values from nativewindowviews
8 lines
164 B
HTML
8 lines
164 B
HTML
<html>
|
|
<body>
|
|
<script type="text/javascript" charset="utf-8">
|
|
window.opener.postMessage('size: ' + innerWidth + ' ' + innerHeight, '*')
|
|
</script>
|
|
</body>
|
|
</html>
|