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

Unified Diff: content/test/data/battery_status/battery_status_promise_resolution_test.html

Issue 334223003: Battery Status API: end-to-end browsertests and default values. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/data/battery_status/battery_status_event_listener_test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/battery_status/battery_status_promise_resolution_test.html
diff --git a/content/test/data/battery_status/battery_status_promise_resolution_test.html b/content/test/data/battery_status/battery_status_promise_resolution_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..43966b8c5fbc8ef80555e29e0dc8fbd067ac83cf
--- /dev/null
+++ b/content/test/data/battery_status/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>
« no previous file with comments | « content/test/data/battery_status/battery_status_event_listener_test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698