Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'

This commit is contained in:
WPT Sync Bot 2022-11-10 01:22:36 +00:00
parent ace9b32b1c
commit df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions

View file

@ -0,0 +1,41 @@
// META: script=/resources/testharness.js
// META: script=/resources/testharnessreport.js
// META: script=/shape-detection/resources/shapedetection-helpers.js
const imgUint16 = new ImageData(1024, 1024, {storageFormat: 'uint16'});
// These tests verify that a Detector's detect() can process ImageData with
// uint16 storage format.
const imageDataTests = [
{
createDetector: () => {
return new FaceDetector();
},
mockTestName: 'FaceDetectionTest',
name:
'FaceDetector.detect() can process uint16 storage format ImageData'
},
{
createDetector: () => {
return new BarcodeDetector();
},
mockTestName: 'BarcodeDetectionTest',
name:
'BarcodeDetector.detect() can process uint16 storage format ImageData'
},
{
createDetector: () => {
return new TextDetector();
},
mockTestName: 'TextDetectionTest',
name:
'TextDetector.detect() can process uint16 storage format ImageData'
}
];
for (let imageDataTest of imageDataTests) {
detection_test(imageDataTest.mockTestName, async () => {
let detector = imageDataTest.createDetector();
await detector.detect(imgUint16);
}, imageDataTest.name);
}