1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37

content / test / data / device_sensors / device_motion_null_test.html [blame]

<html>
  <head>
    <title>DeviceMotion all-null event test</title>
  </head>
  <body>
    <div id="status">FAIL</div>
  </body>
  <script type="text/javascript">
    function checkMotionEvent(event) {
      return event.acceleration.x == null &&
             event.acceleration.y == null &&
             event.acceleration.z == null &&
             event.accelerationIncludingGravity.x == null &&
             event.accelerationIncludingGravity.y == null &&
             event.accelerationIncludingGravity.z == null &&
             event.rotationRate.alpha == null &&
             event.rotationRate.beta == null &&
             event.rotationRate.gamma == null;
    }

    function onMotion(event) {
      window.removeEventListener('devicemotion', onMotion);
      checkMotionEvent(event) ? pass() : fail();
    }

    function pass() {
      document.getElementById('status').innerHTML = 'PASS';
      document.location = '#pass';
    }

    function fail() {
      document.location = '#fail';
    }

    window.addEventListener('devicemotion', onMotion);
  </script>
</html>