Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / screen_orientation / resources / iframe-listen-orientation-change.html
1 <!DOCTYPE html>
2 <script>
3     window.screen.orientation.addEventListener('change', function() {
4         parent.window.postMessage(screen.orientation.type, "*");
5     });
6 </script>