mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
18 lines
342 B
JavaScript
18 lines
342 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
'use strict';
|
|
|
|
// https://w3c.github.io/selection-api/
|
|
|
|
idl_test(
|
|
['selection-api'],
|
|
['html', 'dom'],
|
|
idlArray => {
|
|
idlArray.add_objects({
|
|
Window: ['window'],
|
|
Document: ['document'],
|
|
Selection: ['getSelection()'],
|
|
});
|
|
}
|
|
);
|