Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js |
| diff --git a/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js b/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js |
| index bcf191dda27c2e2c8915e6d2e32bf941bfe0c346..9a39202990d38087b727501b585fadb45b603eac 100644 |
| --- a/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js |
| +++ b/third_party/WebKit/LayoutTests/shapedetection/resources/mock-barcodedetection.js |
| @@ -30,10 +30,22 @@ let mockBarcodeDetectionReady = define( |
| { |
| raw_value : "cats", |
| bounding_box: { x : 1.0, y: 1.0, width: 100.0, height: 100.0 }, |
| + corner_points: [ |
| + { x : 1.0, y: 1.0}, |
| + { x : 1.0, y: 1.0}, |
| + { x : 1.0, y: 1.0}, |
| + { x : 1.0, y: 1.0} |
|
mcasas
2016/12/15 19:01:58
These corner points would not align with the
previ
xianglu
2016/12/16 00:01:25
Done.
|
| + ], |
| }, |
| { |
| raw_value : "dogs", |
| bounding_box: { x : 2.0, y: 2.0, width: 50.0, height: 50.0 }, |
| + corner_points: [ |
| + { x : 1.0, y: 1.0}, |
| + { x : 1.0, y: 1.0}, |
| + { x : 1.0, y: 1.0}, |
| + { x : 1.0, y: 1.0} |
| + ], |
| }, |
| ], |
| }); |