Revision 6571e31adb61b5c42f8dcf612e467958c9561650 authored by Ben Kelly on 11 April 2018, 09:35:46 UTC, committed by moz-wptsync-bot on 11 April 2018, 14:50:18 UTC
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1451124
gecko-commit: aed7d4d9be32f8806138d2a23f4b8b0332498085
gecko-integration-branch: central
gecko-reviewers: asuth
1 parent 6e61ed2
Raw File
t010-manual.html
<!DOCTYPE html>
<html>
  <head>
    <title>Rotate the device frame around its y axis</title>
    <meta name=viewport content="width=device-width, maximum-scale=1.0">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="author" title="Mosquito FP7">
    <link rel="reviewer author" title="Zhiqiang Zhang" href="mailto:zhiqiang.zhang@intel.com"> <!-- 2013-10-12 -->
  </head>
  <body>
    <p>Rotate the device frame around its y axis to run the test.</p>
    <div id="log"></div>
    <script>
      var t1 = async_test("Gamma is in [-90, 90)");
      var run = false;
      window.addEventListener("deviceorientation", function(e) {
        if (!run && e.gamma !== null) {
          run = true;
          t1.step(function() {
            assert_greater_than_equal(e.gamma, -90);
            assert_less_than(e.gamma, 90);
          });
          t1.done();
        }
      }, false);
    </script>
  </body>
</html>

back to top