mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
16 lines
322 B
JavaScript
16 lines
322 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: timeout=long
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['fullscreen'],
|
|
['dom', 'html'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
Document: ['new Document'],
|
|
Element: ['document.createElementNS(null, "test")'],
|
|
});
|
|
}
|
|
);
|