Index: content/test/data/device_orientation/device_motion_null_test_with_alert.html |
diff --git a/content/test/data/device_orientation/device_motion_null_test_with_alert.html b/content/test/data/device_orientation/device_motion_null_test_with_alert.html |
deleted file mode 100644 |
index fa75f7e1f1da5208d1d9948049a010687016cc15..0000000000000000000000000000000000000000 |
--- a/content/test/data/device_orientation/device_motion_null_test_with_alert.html |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-<html> |
- <head> |
- <title>DeviceMotion all-null event test with alert</title> |
- <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); |
- alert("suspend active DOM objects"); |
- </script> |
- </head> |
- <body> |
- <div id="status">FAIL</div> |
- </body> |
-</html> |