https://github.com/web-platform-tests/wpt
Raw File
Tip revision: bd350d7475c9eaf667a254ee7f49f25a06146b52 authored by Mike Pennisi on 10 December 2018, 20:43:57 UTC
Explicitly fetch test manifest
Tip revision: bd350d7
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