https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8aa53dd361f53703c6c67c4b007a472832a855a2 authored by Marcos Cáceres on 22 November 2018, 02:14:30 UTC
fix: copy pasta
Tip revision: 8aa53dd
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