Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: content/test/data/device_sensors/device_light_test.html

Issue 292693004: [DeviceLight] Browser+java part (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>DeviceLight test</title>
4 <script type="text/javascript">
5 function checkLightEvent(event) {
6 return event.value >= 0;
7 }
8
9 function onLight(event) {
10 if (checkLightEvent(event)) {
11 window.removeEventListener('devicelight', onLight);
12 pass();
13 } else {
14 fail();
15 }
16 }
17
18 function pass() {
19 document.getElementById('status').innerHTML = 'PASS';
20 document.location = '#pass';
21 }
22
23 function fail() {
24 document.location = '#fail';
25 }
26 </script>
27 </head>
28 <body onLoad="window.addEventListener('devicelight', onLight)">
29 <div id="status">FAIL</div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698