chromium/content/test/data/screen_orientation/screen_orientation_lock_smoke.html

<!DOCTYPE HTML>
<html>
<head>
</head>
<script>
  screen.orientation.lock('landscape').then(function() {
    document.location.hash =
      screen.orientation.search("landscape") == 0 ? "#Pass" : "#Fail";
  }, function(e) {
    document.location.hash = "#" + e.name;
  });
</script>
<body>
  <div>Starting...</div>
</body>
</html>