summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/ambient-light/support-iframe.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/ambient-light/support-iframe.html')
-rw-r--r--testing/web-platform/tests/ambient-light/support-iframe.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/web-platform/tests/ambient-light/support-iframe.html b/testing/web-platform/tests/ambient-light/support-iframe.html
new file mode 100644
index 000000000..994642d51
--- /dev/null
+++ b/testing/web-platform/tests/ambient-light/support-iframe.html
@@ -0,0 +1,11 @@
+<!DOCTYPE HTML>
+<meta charset="utf-8">
+<input type="text" id="reading" />
+<script>
+
+let sensor = new AmbientLightSensor();
+sensor.start();
+document.getElementById("reading").value = String(sensor.reading);
+sensor.stop();
+
+</script>