blob: 7e9f3c44047cc533a4a0d9af1f7839b7e75741c9 (
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
// https://drafts.csswg.org/css-highlight-api-1/
'use strict';
idl_test(
['css-highlight-api'],
['cssom'],
idl_array => {
idl_array.add_objects({
Highlight: ['new Highlight(new Range())'],
HighlightRegistry: ['CSS.highlights'],
});
}
);
|