Click the button.

There is a script inside this iframe that will change the background-color of this iframe's parent document:

<script>
function myFunction() {
    parent.document.body.style.backgroundColor = "red";
}
</script>