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

Unified Diff: content/test/data/device_sensors/device_orientation_null_test.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
Index: content/test/data/device_sensors/device_orientation_null_test.html
diff --git a/content/test/data/device_sensors/device_orientation_null_test.html b/content/test/data/device_sensors/device_orientation_null_test.html
deleted file mode 100644
index 07645bd73aed1ecb893c222e1bbdecdb14b9100e..0000000000000000000000000000000000000000
--- a/content/test/data/device_sensors/device_orientation_null_test.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
- <head>
- <title>DeviceOrientation all-null event test</title>
- </head>
- <body>
- <div id="status">FAIL</div>
- </body>
- <script type="text/javascript">
- function checkOrientationEvent(event) {
- return event.alpha == null &&
- event.beta == null &&
- event.gamma == null;
- }
-
- function onOrientation(event) {
- window.removeEventListener('deviceorientation', onOrientation);
- checkOrientationEvent(event) ? pass() : fail();
- }
-
- function pass() {
- document.getElementById('status').innerHTML = 'PASS';
- document.location = '#pass';
- }
-
- function fail() {
- document.location = '#fail';
- }
-
- window.addEventListener('deviceorientation', onOrientation);
- </script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698