mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
18 lines
404 B
JavaScript
18 lines
404 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
// https://w3c.github.io/screen-orientation/
|
|
|
|
idl_test(
|
|
['screen-orientation'],
|
|
['dom', 'cssom-view', 'html'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
Screen: ['screen'],
|
|
ScreenOrientation: ['screen.orientation']
|
|
});
|
|
},
|
|
'Test IDL implementation of Screen Orientation API'
|
|
);
|