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

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

Issue 870103004: Deflake Device Orientation/Motion browsertests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix formatting Created 5 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: content/test/data/device_sensors/device_motion_null_test.html
diff --git a/content/test/data/device_sensors/device_motion_null_test.html b/content/test/data/device_sensors/device_motion_null_test.html
new file mode 100644
index 0000000000000000000000000000000000000000..8bf75e6148f28fba1ebf02791fce415f3b8bff14
--- /dev/null
+++ b/content/test/data/device_sensors/device_motion_null_test.html
@@ -0,0 +1,37 @@
+<html>
+ <head>
+ <title>DeviceMotion all-null event test</title>
+ </head>
+ <body>
+ <div id="status">FAIL</div>
+ </body>
+ <script type="text/javascript">
+ 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 onMotion(event) {
+ window.removeEventListener('devicemotion', onMotion);
+ checkMotionEvent(event) ? pass() : fail();
+ }
+
+ function pass() {
+ document.getElementById('status').innerHTML = 'PASS';
+ document.location = '#pass';
+ }
+
+ function fail() {
+ document.location = '#fail';
+ }
+
+ window.addEventListener('devicemotion', onMotion);
+ </script>
+</html>

Powered by Google App Engine
This is Rietveld 408576698