1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15

content / test / data / screen_orientation / screen_orientation_windoworientationchange.html [blame]

<!DOCTYPE HTML>
<html>
<head>
</head>
<script>
  window.onorientationchange = function() {
    document.location.hash = '#' + window.orientation;
  };

  document.location.hash = '#ready';
</script>
<body>
  <div>Starting...</div>
</body>
</html>