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

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

Issue 2812223006: Replace device_sensor browsertest by service unittest. (Closed)
Patch Set: eliminate "unreachable code" warning. 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/data/device_sensors/device_orientation_test.html ('k') | device/sensors/device_sensor_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/device_sensors/device_sensors_null_test_with_alert.html
diff --git a/content/test/data/device_sensors/device_sensors_null_test_with_alert.html b/content/test/data/device_sensors/device_sensors_null_test_with_alert.html
deleted file mode 100644
index dba75d96b5111f75e8e3185a3213ba6d721965c4..0000000000000000000000000000000000000000
--- a/content/test/data/device_sensors/device_sensors_null_test_with_alert.html
+++ /dev/null
@@ -1,66 +0,0 @@
-<html>
- <head>
- <title>Device Motion/Orientation all-null event test with alert</title>
- </head>
- <body>
- <div id="status">FAIL</div>
- </body>
- <script type="text/javascript">
- passedOrientation = false;
- passedMotion = false;
-
- function checkOrientationEvent(event) {
- return event.alpha == null &&
- event.beta == null &&
- event.gamma == null;
- }
-
- function checkMotionEvent(event) {
- return event.acceleration.x == null &&
- event.acceleration.y == null &&
- event.acceleration.z == null &&
- event.accelerationIncludingGravity.x == null &&
- event.accelerationIncludingGravity.y == null &&
- event.accelerationIncludingGravity.z == null &&
- event.rotationRate.alpha == null &&
- event.rotationRate.beta == null &&
- event.rotationRate.gamma == null;
- }
-
- function onOrientation(event) {
- window.removeEventListener('deviceorientation', onOrientation);
- checkOrientationEvent(event) ? passOrientation() : fail();
- }
-
- function onMotion(event) {
- window.removeEventListener('devicemotion', onMotion);
- checkMotionEvent(event) ? passMotion() : fail();
- }
-
- function passOrientation() {
- passedOrientation = true;
- if (passedMotion) pass();
- }
-
- function passMotion() {
- passedMotion = true;
- if (passedOrientation) pass();
- }
-
- function pass() {
- document.getElementById('status').innerHTML = 'PASS';
- document.location = '#pass';
- }
-
- function fail() {
- document.location = '#fail';
- }
-
- window.addEventListener('deviceorientation', onOrientation);
- window.addEventListener('devicemotion', onMotion);
-
- // Raise a modal alert dialog to test that the one-off null-events
- // still propagate to window after the alert is dismissed.
- alert("suspend active DOM objects");
- </script>
-</html>
« no previous file with comments | « content/test/data/device_sensors/device_orientation_test.html ('k') | device/sensors/device_sensor_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698