summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/screen-orientation/resources/iframe-listen-orientation-change.html
blob: 760d952481f8a37f4fc3245184ff42a2bb063375 (plain)
1
2
3
4
5
6
<!DOCTYPE html>
<script>
    window.screen.orientation.addEventListener('change', function() {
        parent.window.postMessage(screen.orientation.type, "*");
    });
</script>