| // Copyright 2017 The Chromium Authors | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| // https://wicg.github.io/shape-detection-api/text.html#detectedtext-section | |
| dictionary DetectedText { | |
| required DOMString rawValue; | |
| required DOMRectReadOnly boundingBox; | |
| // 4 corner points in clockwise direction starting with top-left. Due to | |
| // possible perspective distortions, this is not necessarily a rectangle. | |
| required sequence<Point2D> cornerPoints; | |
| }; |