mirror of
https://github.com/servo/servo.git
synced 2025-07-25 08:10:21 +01:00
17 lines
369 B
JavaScript
17 lines
369 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
// https://w3c.github.io/ambient-light/
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['ambient-light'],
|
|
['generic-sensor', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
AmbientLightSensor: ['new AmbientLightSensor()']
|
|
});
|
|
},
|
|
'Test IDL implementation of Ambient Light Sensor'
|
|
);
|