Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1223)

Side by Side Diff: android_webview/tools/WebViewShell/test/blink-apis/battery-status/battery-callback.html

Issue 1785283005: [WebView] Reorganize all of the WebView Shell apks into their own dir. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <script src="../../resources/js-test.js"></script>
4 <body>
5 <script type="text/javascript">
6 description("Test Battery Status API callback in WebView");
7 window.jsTestIsAsync = true;
8
9 var battery;
10 function batteryStatusSuccess(batteryManager) {
11 debug('batteryStatusSuccess invoked');
12 battery = batteryManager;
13
14 // Validate values
15 shouldBeGreaterThanOrEqual('battery.level', '0');
16 shouldBeLessThanOrEqual('battery.level', '1');
17 // Check that level has at most 2 significant digits
18 shouldBeTrue('battery.level.toPrecision(2) == battery.level');
19 shouldBeTrue('!battery.charging || battery.dischargingTime === Infinity' );
20 shouldBeTrue('battery.charging || battery.chargingTime === Infinity');
21 finishJSTest();
22 }
23
24 function batteryStatusFailure() {
25 testFailed("failed to successfully resolve the promise");
26 finishJSTest();
27 }
28
29 navigator.getBattery().then(batteryStatusSuccess, batteryStatusFailure);
30 </script>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698