mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
// META: global=window,worker
|
|
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
// See: https://wicg.github.io/shape-detection-api/
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['shape-detection-api', 'text-detection-api.tentative'],
|
|
['dom', 'geometry'],
|
|
async idl_array => {
|
|
idl_array.add_objects({
|
|
FaceDetector: ['new FaceDetector()'],
|
|
BarcodeDetector: ['new BarcodeDetector()'],
|
|
TextDetector: ['new TextDetector()'],
|
|
});
|
|
}
|
|
);
|