Last active
August 29, 2015 14:27
-
-
Save valueof/e42fa001e800df5b2225 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<style>body {background-color: red; height: 500px; width: 500px;}</style> | |
<script> | |
window.addEventListener('message', function (ev) { | |
var message = ev.data.split(':') | |
if (message[0] != 'yo') { | |
return | |
} | |
window.parent.postMessage([ | |
message[1], | |
document.body.scrollHeight + 'px', | |
document.body.scrollWidth + 'px' | |
].join(':'), '*') | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment