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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..07645bd73aed1ecb893c222e1bbdecdb14b9100e |
--- /dev/null |
+++ b/content/test/data/device_sensors/device_orientation_null_test.html |
@@ -0,0 +1,31 @@ |
+<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> |