[refactor] More post-NSS WebCrypto cleanups (utility functions).
[chromium-blink-merge.git] / content / test / data / device_sensors / device_light_test.html
blob94446bec61e118abf568068534e5ca3787078610
1 <html>
2 <head>
3 <title>DeviceLight test</title>
4 <script type="text/javascript">
5 function checkLightEvent(event) {
6 return event.value >= 0;
9 function onLight(event) {
10 if (checkLightEvent(event)) {
11 window.removeEventListener('devicelight', onLight);
12 pass();
13 } else {
14 fail();
18 function pass() {
19 document.getElementById('status').innerHTML = 'PASS';
20 document.location = '#pass';
23 function fail() {
24 document.location = '#fail';
26 </script>
27 </head>
28 <body onLoad="window.addEventListener('devicelight', onLight)">
29 <div id="status">FAIL</div>
30 </body>
31 </html>