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