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

Unified Diff: content/test/data/battery_monitor/battery_status_event_listener_test.html

Issue 2882633002: [DeviceService] Create end-to-end browsertest for BatteryMonitor (Closed)
Patch Set: Close binding before destroying response callback Created 3 years, 7 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/BUILD.gn ('k') | content/test/data/battery_monitor/battery_status_manual_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/battery_monitor/battery_status_event_listener_test.html
diff --git a/content/test/data/battery_monitor/battery_status_event_listener_test.html b/content/test/data/battery_monitor/battery_status_event_listener_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..952a4e7a39085b1dbe3bc534098f3e0a67ec817d
--- /dev/null
+++ b/content/test/data/battery_monitor/battery_status_event_listener_test.html
@@ -0,0 +1,34 @@
+<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>
« no previous file with comments | « content/test/BUILD.gn ('k') | content/test/data/battery_monitor/battery_status_manual_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698