mirror of
https://github.com/servo/servo.git
synced 2025-08-08 15:05:35 +01:00
Update web-platform-tests to revision 6d7f862e4afa43d45bb3f800c457e9f746cd8730
This commit is contained in:
parent
ca25e18791
commit
5b34e16ada
93 changed files with 2141 additions and 1321 deletions
|
@ -15,12 +15,9 @@ dictionary FaceDetectorOptions {
|
|||
boolean fastMode;
|
||||
};
|
||||
|
||||
[Exposed=(Window,Worker),
|
||||
SecureContext,
|
||||
Serializable]
|
||||
interface DetectedFace {
|
||||
[SameObject] readonly attribute DOMRectReadOnly boundingBox;
|
||||
[SameObject] readonly attribute FrozenArray<Landmark>? landmarks;
|
||||
dictionary DetectedFace {
|
||||
required DOMRectReadOnly boundingBox;
|
||||
required FrozenArray<Landmark>? landmarks;
|
||||
};
|
||||
|
||||
dictionary Landmark {
|
||||
|
@ -47,14 +44,11 @@ dictionary BarcodeDetectorOptions {
|
|||
sequence<BarcodeFormat> formats;
|
||||
};
|
||||
|
||||
[Exposed=(Window,Worker),
|
||||
SecureContext,
|
||||
Serializable]
|
||||
interface DetectedBarcode {
|
||||
[SameObject] readonly attribute DOMRectReadOnly boundingBox;
|
||||
[SameObject] readonly attribute DOMString rawValue;
|
||||
[SameObject] readonly attribute BarcodeFormat format;
|
||||
[SameObject] readonly attribute FrozenArray<Point2D> cornerPoints;
|
||||
dictionary DetectedBarcode {
|
||||
required DOMRectReadOnly boundingBox;
|
||||
required DOMString rawValue;
|
||||
required BarcodeFormat format;
|
||||
required FrozenArray<Point2D> cornerPoints;
|
||||
};
|
||||
|
||||
enum BarcodeFormat {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue