Index: content/test/data/device_sensors/device_light_infinity_test.html |
diff --git a/content/test/data/device_sensors/device_light_infinity_test.html b/content/test/data/device_sensors/device_light_infinity_test.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..584dbbec651d7634db929e7d4341a7bdfa0e7287 |
--- /dev/null |
+++ b/content/test/data/device_sensors/device_light_infinity_test.html |
@@ -0,0 +1,30 @@ |
+<html> |
+ <head> |
+ <title>DeviceLight one-off Infinity event test with alert</title> |
+ </head> |
+ <body> |
+ <div id="status">FAIL</div> |
+ </body> |
+ <script type="text/javascript"> |
+ function checkLightEvent(event) { |
+ return event.value == Infinity; |
+ } |
+ |
+ function onLight(event) { |
+ window.removeEventListener('devicelight', onLight); |
+ checkLightEvent(event) ? pass() : fail(); |
+ } |
+ |
+ function pass() { |
+ document.getElementById('status').innerHTML = 'PASS'; |
+ document.location = '#pass'; |
+ } |
+ |
+ function fail() { |
+ document.location = '#fail'; |
+ } |
+ |
+ window.addEventListener('devicelight', onLight); |
+ alert("suspend active DOM objects"); |
+ </script> |
+</html> |