https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 10c4433f448fa5a85cdbdcd8c5dc2765951297ae authored by Javier Fernandez on 22 December 2018, 22:34:40 UTC
[css-text] New value 'break-spaces' for the white-space property
Tip revision: 10c4433
interfaces.any.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

// https://w3c.github.io/DOM-Parsing/

idl_test(
  ['DOM-Parsing'],
  ['dom'],
  idlArray => {
    idlArray.add_objects({
      DOMParser: ['new DOMParser()'],
      Element: ['document.createElement("div")'],
      Range: ['new Range()'],
      XMLSerializer: ['new XMLSerializer()'],
    })
  }
);
back to top