mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
10 lines
233 B
HTML
10 lines
233 B
HTML
<!DOCTYPE HTML>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
try {
|
|
let sensor = new AmbientLightSensor();
|
|
parent.postMessage( "sensor.start() can be fired within iframes" , '*');
|
|
} catch (e) {
|
|
parent.postMessage( e.name , '*');
|
|
}
|
|
</script>
|