servo/tests/wpt/web-platform-tests/xslt/idlharness.tentative.window.js

15 lines
285 B
JavaScript

// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
'use strict';
idl_test(
['xslt.tentative'],
['html'],
async idlArray => {
idlArray.add_objects({
XSLTProcessor: ['processor']
});
self.processor = new XSLTProcessor();
}
);