Automatic update from web-platform-tests Rename text-detection-api.tentative.idl to text-detection-api.idl (#25769) Closes https://github.com/web-platform-tests/wpt/pull/25753 -- wpt-commits: 14d4862beeb02904dc6712d62a36c04474bacf12 wpt-pr: 25769
19 lines
548 B
Plaintext
19 lines
548 B
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Accelerated Text Detection in Images (https://wicg.github.io/shape-detection-api/text.html)
|
|
|
|
[
|
|
Exposed=(Window,Worker),
|
|
SecureContext
|
|
] interface TextDetector {
|
|
constructor();
|
|
Promise<sequence<DetectedText>> detect(ImageBitmapSource image);
|
|
};
|
|
|
|
dictionary DetectedText {
|
|
required DOMRectReadOnly boundingBox;
|
|
required DOMString rawValue;
|
|
required FrozenArray<Point2D> cornerPoints;
|
|
};
|