blob: 115f6ccb1e393586f4076884c01443d4944bb413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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']
});
}
);
|