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

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

Issue 2458453002: [sensors] Add Permission guard to the generic sensor apis.
Patch Set: rebase + blink reformat 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>AmbientLight Generic Sensor test</title>
4 <script type="text/javascript">
5 var timeOrigin;
6 var sensor;
7 function onAmbientLightReadingChange() {
8 if (sensor.illuminance == 50 &&
9 sensor.timestamp > timeOrigin &&
10 sensor.timestamp < window.performance.now()) {
11 pass();
12 } else {
13 fail();
14 }
15 }
16
17 function start() {
18 sensor = new AmbientLightSensor();
19 timeOrigin = window.performance.now();
20 sensor.onchange =
21 onAmbientLightReadingChange;
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') | third_party/WebKit/LayoutTests/http/tests/permissions/chromium/resources/test-revoke.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698