blob: e6e84fa9c72ff8ac639607d8a4dad8c0816e7ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long
'use strict';
// https://w3c.github.io/pointerevents/
idl_test(
['pointerevents'],
['uievents', 'html', 'dom'],
idl_array => {
idl_array.add_objects({
Document: ['document'],
Element: ['document.body'],
Window: ['window'],
Navigator: ['navigator'],
PointerEvent: ['new PointerEvent("type")']
});
}
);
|