https://github.com/web-platform-tests/wpt
Raw File
Tip revision: add926c9ab105c2ae283dbd4045bc0918add1d71 authored by Anne van Kesteren on 27 August 2018, 16:32:58 UTC
add more tests
Tip revision: add926c
idlharness.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

idl_test(
  ['fullscreen'],
  ['dom', 'html'],
  idl_array => {
    idl_array.add_objects({
      Document: ['new Document'],
      Element: ['document.createElementNS(null, "test")'],
    });
  }
);
back to top