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

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

Issue 2812223006: Replace device_sensor browsertest by service unittest. (Closed)
Patch Set: eliminate "unreachable code" warning. Created 3 years, 8 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 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;
11 }
12
13 function onLight(event) {
14 window.removeEventListener('devicelight', onLight);
15 checkLightEvent(event) ? pass() : fail();
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
27 window.addEventListener('devicelight', onLight);
28 </script>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698