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

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

Issue 292693004: [DeviceLight] Browser+java part (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: null event test case 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>
timvolodine 2014/09/10 13:47:25 also the file is better called device_light_infini
riju_ 2014/09/22 08:22:21 Done.
2 <head>
3 <title>DeviceLight all-null event test with alert</title>
timvolodine 2014/09/10 13:47:25 "all-null event" -> one-off infinity event
riju_ 2014/09/22 08:22:21 Done.
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 alert("suspend active DOM objects");
29 </script>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698