blob: 8cb73acbde43399094d60c2db09cc8ebab9c1946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long
'use strict';
// https://compat.spec.whatwg.org/
idl_test(
['compat'],
['html', 'dom'],
idl_array => {
idl_array.add_objects({
Window: ['window'],
HTMLBodyElement: ['document.body'],
});
}
);
|