idlharness.window.js (369B)
1 // META: script=/resources/WebIDLParser.js 2 // META: script=/resources/idlharness.js 3 // META: timeout=long 4 5 'use strict'; 6 7 // https://w3c.github.io/html-media-capture/ 8 9 idl_test( 10 ['html-media-capture'], 11 ['html', 'dom'], 12 idl_array => { 13 idl_array.add_objects({ 14 HTMLInputElement: ['input'], 15 }); 16 17 self.input = document.createElement('input'); 18 } 19 );