| Index: chrome/test/data/device_orientation/device_orientation_test.html
|
| ===================================================================
|
| --- chrome/test/data/device_orientation/device_orientation_test.html (revision 148472)
|
| +++ chrome/test/data/device_orientation/device_orientation_test.html (working copy)
|
| @@ -1,36 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <title>DeviceOrientation 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;
|
| - }
|
| -
|
| - function onOrientation(event) {
|
| - if (checkOrientationEvent(event)) {
|
| - window.removeEventListener('deviceorientation', onOrientation);
|
| - pass();
|
| - } else {
|
| - fail();
|
| - }
|
| - }
|
| -
|
| - function pass() {
|
| - document.getElementById('status').innerHTML = 'PASS';
|
| - document.location = '#pass';
|
| - }
|
| -
|
| - function fail() {
|
| - document.location = '#fail';
|
| - }
|
| - </script>
|
| - </head>
|
| - <body onLoad="window.addEventListener('deviceorientation', onOrientation)">
|
| - <div id="status">FAIL</div>
|
| - </body>
|
| -</html>
|
|
|