https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ffa8120532d7c0f9a8f2eb4aca9e13073ab557cd authored by Marcos Cáceres on 28 November 2018, 04:56:37 UTC
Another typo
Tip revision: ffa8120
idlharness.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

// https://w3c.github.io/html-media-capture/

idl_test(
  ['html-media-capture'],
  ['html', 'dom'],
  idl_array => {
    idl_array.add_objects({
      HTMLInputElement: ['input'],
    });

    self.input = document.createElement('input');
  }
);
back to top