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

Unified Diff: third_party/WebKit/LayoutTests/battery-status/promise-with-eventlisteners.html

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Synced. Created 4 years, 10 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
Index: third_party/WebKit/LayoutTests/battery-status/promise-with-eventlisteners.html
diff --git a/third_party/WebKit/LayoutTests/battery-status/promise-with-eventlisteners.html b/third_party/WebKit/LayoutTests/battery-status/promise-with-eventlisteners.html
index a739f8e7fd752dff6df98224532a0bb019de62aa..b2f77161054e001fb561ade668effa888bb549b6 100644
--- a/third_party/WebKit/LayoutTests/battery-status/promise-with-eventlisteners.html
+++ b/third_party/WebKit/LayoutTests/battery-status/promise-with-eventlisteners.html
@@ -7,6 +7,8 @@ description("Test promise resolution and event listeners callbacks.");
if (!window.testRunner)
debug('This test cannot be run without the TestRunner');
+if (!window.internals)
+ debug('This test cannot be run without the window.internals');
// Clean-up any unused battery manager objects from previous tests.
gc();
@@ -19,7 +21,7 @@ function setAndFireMockBatteryInfo(charging, chargingTime, dischargingTime, leve
chargingTime: chargingTime,
dischargingTime: dischargingTime,
level: level };
- testRunner.didChangeBatteryStatus(charging, chargingTime, dischargingTime, level);
+ window.internals.updateBatteryStatus(charging, chargingTime, dischargingTime, level);
}
// compare obtained battery values with the mock values
@@ -43,7 +45,7 @@ function batteryStatusSuccess(batteryManager) {
battery.addEventListener('dischargingtimechange', onDischargingTimeChange);
battery.addEventListener('chargingtimechange', onChargingTimeChange);
battery.addEventListener('levelchange', onLevelChange);
-
+
setTimeout(fireNextMockBatteryInfo, 0);
}
@@ -104,7 +106,7 @@ function batteryStatusFailure() {
}
navigator.getBattery().then(batteryStatusSuccess, batteryStatusFailure);
-setAndFireMockBatteryInfo(false, 10, 20, 0.5);
+setAndFireMockBatteryInfo(false, 10, 20, 0.5);
</script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698