1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-12 19:38:36 +00:00
Files
UXP/testing/web-platform/tests/ambient-light/support-iframe.html
T

12 lines
232 B
HTML

<!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>