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

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

Issue 2819163002: [DeviceService] Replace content browser test with service test for BatteryMonitorImpl (Closed)
Patch Set: Rebase only Created 3 years, 8 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_status/battery_status_event_listener_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/battery_status/battery_status_default_test.html
diff --git a/content/test/data/battery_status/battery_status_default_test.html b/content/test/data/battery_status/battery_status_default_test.html
deleted file mode 100644
index 228da64eec7a8d7307d64a18d44b98b69d8af8dc..0000000000000000000000000000000000000000
--- a/content/test/data/battery_status/battery_status_default_test.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<html>
- <head>
- <title>Battery Status API test : default values</title>
- <script type="text/javascript">
-
- function checkBatteryInfo(battery) {
- return battery.charging &&
- battery.chargingTime == 0 &&
- battery.dischargingTime == Infinity &&
- battery.level == 1.0;
- }
-
- 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/BUILD.gn ('k') | content/test/data/battery_status/battery_status_event_listener_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698