| Index: content/test/data/device_sensors/device_motion_only_some_sensors_are_available_test.html
|
| diff --git a/content/test/data/device_sensors/device_motion_only_some_sensors_are_available_test.html b/content/test/data/device_sensors/device_motion_only_some_sensors_are_available_test.html
|
| deleted file mode 100644
|
| index b0286e70781e691f1cc32998fadef9a08a7bdb95..0000000000000000000000000000000000000000
|
| --- a/content/test/data/device_sensors/device_motion_only_some_sensors_are_available_test.html
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <title>DeviceMotion only some sensors are available test</title>
|
| - <script type="text/javascript">
|
| - let expectedInterval = Math.floor(1000 / 60);
|
| - function checkMotionEvent(event) {
|
| - return event.acceleration.x == 1 &&
|
| - event.acceleration.y == 2 &&
|
| - event.acceleration.z == 3 &&
|
| - event.accelerationIncludingGravity.x == null &&
|
| - event.accelerationIncludingGravity.y == null &&
|
| - event.accelerationIncludingGravity.z == null &&
|
| - event.rotationRate.alpha == 7 &&
|
| - event.rotationRate.beta == 8 &&
|
| - event.rotationRate.gamma == 9 &&
|
| - event.interval == expectedInterval;
|
| - }
|
| -
|
| - function onMotion(event) {
|
| - if (checkMotionEvent(event)) {
|
| - window.removeEventListener('devicemotion', onMotion);
|
| - pass();
|
| - } else {
|
| - fail();
|
| - }
|
| - }
|
| -
|
| - function pass() {
|
| - document.getElementById('status').innerHTML = 'PASS';
|
| - document.location = '#pass';
|
| - }
|
| -
|
| - function fail() {
|
| - document.location = '#fail';
|
| - }
|
| - </script>
|
| - </head>
|
| - <body onLoad="window.addEventListener('devicemotion', onMotion)">
|
| - <div id="status">FAIL</div>
|
| - </body>
|
| -</html>
|
|
|