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

Side by Side Diff: third_party/WebKit/LayoutTests/battery-status/multiple-windows-page-visibility.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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../resources/js-test.js"></script> 4 <script src="../resources/js-test.js"></script>
5 <script> 5 <script>
6 description("Test multiple windows with page visibility."); 6 description("Test multiple windows with page visibility.");
7 7
8 if (!window.testRunner) 8 if (!window.testRunner)
9 debug('This test cannot be run without the TestRunner'); 9 debug('This test cannot be run without the TestRunner');
10 if (!window.internals)
11 debug('This test cannot be run without the window.internals');
10 12
11 // Clean-up any unused battery manager objects from previous tests. 13 // Clean-up any unused battery manager objects from previous tests.
12 gc(); 14 gc();
13 jsTestIsAsync = true; 15 jsTestIsAsync = true;
14 testRunner.waitUntilDone(); 16 testRunner.waitUntilDone();
15 testRunner.setCanOpenWindows(); 17 testRunner.setCanOpenWindows();
16 testRunner.setCloseRemainingWindowsWhenComplete(true); 18 testRunner.setCloseRemainingWindowsWhenComplete(true);
17 19
18 var mockBatteryInfo; 20 var mockBatteryInfo;
19 function setAndFireMockBatteryInfo(charging, chargingTime, dischargingTime, leve l) { 21 function setAndFireMockBatteryInfo(charging, chargingTime, dischargingTime, leve l) {
20 mockBatteryInfo = { charging: charging, 22 mockBatteryInfo = { charging: charging,
21 chargingTime: chargingTime, 23 chargingTime: chargingTime,
22 dischargingTime: dischargingTime, 24 dischargingTime: dischargingTime,
23 level: level }; 25 level: level };
24 testRunner.didChangeBatteryStatus(charging, chargingTime, dischargingTime, l evel); 26 window.internals.updateBatteryStatus(charging, chargingTime, dischargingTime , level);
25 } 27 }
26 28
27 // compare obtained battery values with the mock values 29 // compare obtained battery values with the mock values
28 function checkBatteryInfo(batteryManager) { 30 function checkBatteryInfo(batteryManager) {
29 batteryInfo = batteryManager; 31 batteryInfo = batteryManager;
30 shouldBeDefined("batteryInfo"); 32 shouldBeDefined("batteryInfo");
31 shouldBeDefined("mockBatteryInfo"); 33 shouldBeDefined("mockBatteryInfo");
32 shouldBe('batteryInfo.charging', 'mockBatteryInfo.charging'); 34 shouldBe('batteryInfo.charging', 'mockBatteryInfo.charging');
33 shouldBe('batteryInfo.chargingTime', 'mockBatteryInfo.chargingTime'); 35 shouldBe('batteryInfo.chargingTime', 'mockBatteryInfo.chargingTime');
34 shouldBe('batteryInfo.dischargingTime', 'mockBatteryInfo.dischargingTime'); 36 shouldBe('batteryInfo.dischargingTime', 'mockBatteryInfo.dischargingTime');
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 testFailed('received event while the page was hidden'); 84 testFailed('received event while the page was hidden');
83 setTimeout(finishJSTest, 0); 85 setTimeout(finishJSTest, 0);
84 } 86 }
85 87
86 debug("first window: page is visible"); 88 debug("first window: page is visible");
87 navigator.getBattery().then(batteryStatusSuccess, batteryStatusFailure); 89 navigator.getBattery().then(batteryStatusSuccess, batteryStatusFailure);
88 setAndFireMockBatteryInfo(false, 10, 20, 0.5); 90 setAndFireMockBatteryInfo(false, 10, 20, 0.5);
89 </script> 91 </script>
90 </body> 92 </body>
91 </html> 93 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698