Files
tubestation/testing/web-platform/tests/interfaces/text-detection-api.idl
Stephen McGruer 1341e9249a Bug 1667083 [wpt PR 25769] - Rename text-detection-api.tentative.idl to text-detection-api.idl, a=testonly
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
2020-10-02 12:32:38 +00:00

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;
};