https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1497ab6830d6bb9bd5fc1be8623adb8a08ca81a5 authored by Dong-hee Na on 26 October 2018, 10:12:54 UTC
wpt: move tests for value/min/max/low/high/optimum IDL attributes of METER
Tip revision: 1497ab6
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