idlharness.https.window.js (390B)
1 // META: script=/resources/WebIDLParser.js 2 // META: script=/resources/idlharness.js 3 // META: timeout=long 4 5 // https://w3c.github.io/battery/ 6 7 'use strict'; 8 9 idl_test( 10 ['battery-status'], 11 ['dom', 'html'], 12 async idl_array => { 13 idl_array.add_objects({ 14 Navigator: ['navigator'], 15 BatteryManager: ['manager'], 16 }) 17 18 self.manager = await navigator.getBattery(); 19 } 20 );