https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 330c54de5826e56ea3dfd314574a29043518e7e8 authored by Marcos Cáceres on 08 August 2018, 10:39:23 UTC
Add edenchuang
Tip revision: 330c54d
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');
  },
  'html-media-capture interfaces.');
back to top