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

Side by Side Diff: content/test/data/generic_sensor/ambient_light_sensor_test.html

Issue 2434563005: [sensors] Add a browser test to sanity check ambient light sensor. (Closed)
Patch Set: Fix nits found by Reilly Created 4 years, 1 month 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
« no previous file with comments | « content/test/BUILD.gn ('k') | device/generic_sensor/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title>AmbientLight Generic Sensor test</title>
4 <script type="text/javascript">
5 var timeOrigin;
6 function onAmbientLightReadingChange(event) {
7 if (event.reading.illuminance == 50 &&
8 event.reading.timeStamp > timeOrigin &&
9 event.reading.timeStamp < window.performance.now()) {
10 pass();
11 } else {
12 fail();
13 }
14 }
15
16 function start() {
17 var sensor = new AmbientLightSensor();
18 timeOrigin = window.performance.now();
19 sensor.onchange = function(e) {
20 onAmbientLightReadingChange(e);
21 };
22 sensor.start();
23 }
24
25 function pass() {
26 document.getElementById('status').innerHTML = 'PASS';
27 document.location = '#pass';
28 }
29
30 function fail() {
31 document.location = '#fail';
32 }
33 </script>
34 </head>
35 <body onLoad="start()">
36 <div id="status">FAIL</div>
37 </body>
38 </html>
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | device/generic_sensor/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698