servo/tests/wpt/web-platform-tests/screen-orientation/resources/sandboxed-iframe-locking.html

11 lines
226 B
HTML

<script>
let msg = "";
screen.orientation.lock("portrait-primary")
.then(() => {
msg = screen.orientation.type;
}).catch(error => {
msg = error.name;
}).finally(() => {
parent.window.postMessage(msg, "*");
});
</script>