Index: content/test/data/device_orientation/device_orientation_null_test.html |
diff --git a/content/test/data/device_orientation/device_orientation_test.html b/content/test/data/device_orientation/device_orientation_null_test.html |
similarity index 62% |
copy from content/test/data/device_orientation/device_orientation_test.html |
copy to content/test/data/device_orientation/device_orientation_null_test.html |
index 95c68f553c86354602c867cdda05f1491caef544..b9758253e439e69590726c1dfd1d295f21d58ae0 100644 |
--- a/content/test/data/device_orientation/device_orientation_test.html |
+++ b/content/test/data/device_orientation/device_orientation_null_test.html |
@@ -1,14 +1,11 @@ |
<html> |
<head> |
- <title>DeviceOrientation test</title> |
+ <title>DeviceOrientation all-null event test</title> |
<script type="text/javascript"> |
- var eventCount = 0; |
- |
function checkOrientationEvent(event) { |
- // Return true iff the orientation is close enough to (1, 2, 3). |
- return Math.abs(event.alpha - 1) < 0.01 && |
- Math.abs(event.beta - 2) < 0.01 && |
- Math.abs(event.gamma - 3) < 0.01; |
+ return event.alpha == null && |
+ event.beta == null && |
+ event.gamma == null; |
} |
function onOrientation(event) { |
@@ -28,9 +25,12 @@ |
function fail() { |
document.location = '#fail'; |
} |
+ |
+ window.addEventListener('deviceorientation', onOrientation); |
+ alert("suspend active DOM objects"); |
</script> |
</head> |
- <body onLoad="window.addEventListener('deviceorientation', onOrientation)"> |
+ <body> |
<div id="status">FAIL</div> |
</body> |
</html> |