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

Unified Diff: content/test/data/device_sensors/device_light_infinity_test.html

Issue 2845763002: Remove DeviceLightEvent implementation (Closed)
Patch Set: same as previous patch 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/device_sensors/device_light_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/device_sensors/device_light_infinity_test.html
diff --git a/content/test/data/device_sensors/device_light_infinity_test.html b/content/test/data/device_sensors/device_light_infinity_test.html
deleted file mode 100644
index 066890bacd8bdcd504d7d1f51b64986d061f4983..0000000000000000000000000000000000000000
--- a/content/test/data/device_sensors/device_light_infinity_test.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
- <head>
- <title>DeviceLight one-off Infinity event test</title>
- </head>
- <body>
- <div id="status">FAIL</div>
- </body>
- <script type="text/javascript">
- function checkLightEvent(event) {
- return event.value == Infinity;
- }
-
- function onLight(event) {
- window.removeEventListener('devicelight', onLight);
- checkLightEvent(event) ? pass() : fail();
- }
-
- function pass() {
- document.getElementById('status').innerHTML = 'PASS';
- document.location = '#pass';
- }
-
- function fail() {
- document.location = '#fail';
- }
-
- window.addEventListener('devicelight', onLight);
- </script>
-</html>
« no previous file with comments | « content/test/BUILD.gn ('k') | content/test/data/device_sensors/device_light_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698