| Index: content/test/data/generic_sensor/ambient_light_sensor_test.html
|
| diff --git a/content/test/data/generic_sensor/ambient_light_sensor_test.html b/content/test/data/generic_sensor/ambient_light_sensor_test.html
|
| deleted file mode 100644
|
| index 25d46a6a2d3120d991bca1d082105282d524095f..0000000000000000000000000000000000000000
|
| --- a/content/test/data/generic_sensor/ambient_light_sensor_test.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <title>AmbientLight Generic Sensor test</title>
|
| - <script type="text/javascript">
|
| - var timeOrigin;
|
| - var sensor;
|
| - function onAmbientLightReadingChange() {
|
| - if (sensor.illuminance == 50 &&
|
| - sensor.timestamp > timeOrigin &&
|
| - sensor.timestamp < window.performance.now()) {
|
| - pass();
|
| - } else {
|
| - fail();
|
| - }
|
| - }
|
| -
|
| - function start() {
|
| - sensor = new AmbientLightSensor();
|
| - timeOrigin = window.performance.now();
|
| - sensor.onchange =
|
| - onAmbientLightReadingChange;
|
| - sensor.start();
|
| - }
|
| -
|
| - function pass() {
|
| - document.getElementById('status').innerHTML = 'PASS';
|
| - document.location = '#pass';
|
| - }
|
| -
|
| - function fail() {
|
| - document.location = '#fail';
|
| - }
|
| - </script>
|
| - </head>
|
| - <body onLoad="start()">
|
| - <div id="status">FAIL</div>
|
| - </body>
|
| -</html>
|
|
|