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

content / test / data / generic_sensor / ambient_light_sensor_unavailable_test.html [blame]

<html>
  <head>
    <title>AmbientLight Generic Sensor test</title>
    <script type="text/javascript">
      function onAmbientLightReading() {
        fail();
      }

      function onSensorError() {
        pass();
      }

      function start() {
        sensor = new AmbientLightSensor();
        sensor.onreading = onAmbientLightReading;
        sensor.onerror = onSensorError;
        sensor.start();
      }

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

      function fail() {
        document.location = '#fail';
      }
    </script>
  </head>
  <body onLoad="start()">
    <div id="status">FAIL</div>
  </body>
</html>