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

content / test / data / battery_monitor / battery_status_promise_resolution_test.html [blame]

<html>
  <head>
    <title>Battery Status API test : promise resolution</title>
    <script type="text/javascript">

      function checkBatteryInfo(battery) {
        return battery.charging &&
               battery.chargingTime == 100 &&
               battery.dischargingTime == Infinity &&
               battery.level == 0.5;
      }

      function testBattery() {
        navigator.getBattery().then(
          function(battery) {
            if (checkBatteryInfo(battery))
              pass();
            else
              fail();
          }, fail());
      }

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

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