| Index: content/test/data/battery_monitor/battery_status_promise_resolution_test.html
|
| diff --git a/content/test/data/battery_monitor/battery_status_promise_resolution_test.html b/content/test/data/battery_monitor/battery_status_promise_resolution_test.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a83c54825cb1b8bf1190549920aa831e5c8455cf
|
| --- /dev/null
|
| +++ b/content/test/data/battery_monitor/battery_status_promise_resolution_test.html
|
| @@ -0,0 +1,36 @@
|
| +<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>
|
|
|