[refactor] More post-NSS WebCrypto cleanups (utility functions).
[chromium-blink-merge.git] / content / test / data / device_sensors / device_light_infinity_test.html
blob066890bacd8bdcd504d7d1f51b64986d061f4983
1 <html>
2 <head>
3 <title>DeviceLight one-off Infinity event test</title>
4 </head>
5 <body>
6 <div id="status">FAIL</div>
7 </body>
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();
18 function pass() {
19 document.getElementById('status').innerHTML = 'PASS';
20 document.location = '#pass';
23 function fail() {
24 document.location = '#fail';
27 window.addEventListener('devicelight', onLight);
28 </script>
29 </html>