| Index: content/test/data/battery_status/battery_status_event_listener_test.html
|
| diff --git a/content/test/data/battery_status/battery_status_event_listener_test.html b/content/test/data/battery_status/battery_status_event_listener_test.html
|
| deleted file mode 100644
|
| index 952a4e7a39085b1dbe3bc534098f3e0a67ec817d..0000000000000000000000000000000000000000
|
| --- a/content/test/data/battery_status/battery_status_event_listener_test.html
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <title>Battery Status API test : event listener</title>
|
| - <script type="text/javascript">
|
| -
|
| - function testBattery() {
|
| - navigator.getBattery().then(
|
| - function(battery) {
|
| - battery.addEventListener('levelchange', onLevelChange);
|
| - document.location = '#resolved';
|
| - }, fail());
|
| - }
|
| -
|
| - function onLevelChange() {
|
| - if (this.level == 0.6)
|
| - pass();
|
| - else
|
| - 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>
|
|
|