| Index: content/test/data/device_sensors/device_light_test.html
|
| diff --git a/content/test/data/device_sensors/device_light_test.html b/content/test/data/device_sensors/device_light_test.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..94446bec61e118abf568068534e5ca3787078610
|
| --- /dev/null
|
| +++ b/content/test/data/device_sensors/device_light_test.html
|
| @@ -0,0 +1,31 @@
|
| +<html>
|
| + <head>
|
| + <title>DeviceLight test</title>
|
| + <script type="text/javascript">
|
| + function checkLightEvent(event) {
|
| + return event.value >= 0;
|
| + }
|
| +
|
| + function onLight(event) {
|
| + if (checkLightEvent(event)) {
|
| + window.removeEventListener('devicelight', onLight);
|
| + pass();
|
| + } else {
|
| + fail();
|
| + }
|
| + }
|
| +
|
| + function pass() {
|
| + document.getElementById('status').innerHTML = 'PASS';
|
| + document.location = '#pass';
|
| + }
|
| +
|
| + function fail() {
|
| + document.location = '#fail';
|
| + }
|
| + </script>
|
| + </head>
|
| + <body onLoad="window.addEventListener('devicelight', onLight)">
|
| + <div id="status">FAIL</div>
|
| + </body>
|
| +</html>
|
|
|