idlharness.https.any.js (469B)
1 // META: global=window,worker 2 // META: script=/resources/WebIDLParser.js 3 // META: script=/resources/idlharness.js 4 5 // See: https://wicg.github.io/shape-detection-api/ 6 7 'use strict'; 8 9 idl_test( 10 ['shape-detection-api', 'text-detection-api'], 11 ['dom', 'geometry'], 12 async idl_array => { 13 idl_array.add_objects({ 14 FaceDetector: ['new FaceDetector()'], 15 BarcodeDetector: ['new BarcodeDetector()'], 16 TextDetector: ['new TextDetector()'], 17 }); 18 } 19 );