3 <title>DeviceLight one-off Infinity event test
</title>
6 <div id=
"status">FAIL
</div>
8 <script type=
"text/javascript">
9 function checkLightEvent(event
) {
10 return event
.value
== Infinity
;
13 function onLight(event
) {
14 window
.removeEventListener('devicelight', onLight
);
15 checkLightEvent(event
) ? pass() : fail();
19 document
.getElementById('status').innerHTML
= 'PASS';
20 document
.location
= '#pass';
24 document
.location
= '#fail';
27 window
.addEventListener('devicelight', onLight
);