Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(976)

Unified Diff: third_party/WebKit/LayoutTests/shapedetection/shapedetection-options.html

Issue 2502763005: ShapeDetection: Add FaceDetectorOptions for fastMode and maxDetectedFaces (Closed)
Patch Set: 80 cols Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/shapedetection/shapedetection-options.html
diff --git a/third_party/WebKit/LayoutTests/shapedetection/shapedetection-options.html b/third_party/WebKit/LayoutTests/shapedetection/shapedetection-options.html
new file mode 100644
index 0000000000000000000000000000000000000000..aa6165f2c764631abc01b0475e8519a45da6f046
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/shapedetection/shapedetection-options.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="../resources/mojo-helpers.js"></script>
+<script src="resources/mock-shapedetection.js"></script>
+<body>
+<img id='img' src='../media/content/greenbox.png'/>
+</body>
+<script>
+async_test(function(t) {
+ var img = document.getElementById("img");
+ var theMock = null;
+ mockShapeDetectionReady
+ .then(mock => {
+ theMock = mock;
+ return new FaceDetector();
+ })
+ .catch(error => {
+ assert_unreached("Error creating MockShapeDetection: " + error);
+ })
+ .then(detectorWithDefault => {
+ return detectorWithDefault.detect(img);
+ })
Reilly Grant (use Gerrit) 2016/11/22 20:33:33 nit: the return is unnecessary, .then(detectorWit
+ .then(t.step_func(faceDetectionResult => {
+ assert_equals(theMock.getMaxDetectedFaces(), 10, "default maxDetectedFaces");
+ assert_equals(theMock.getFastMode(), false, "default maxDetectedFaces");
+ return new FaceDetector({maxDetectedFaces: 7, fastMode: true});
+ }))
+ .then(detectorWithOptions => {
+ return detectorWithOptions.detect(img)
+ })
+ .then(t.step_func(faceDetectionResult => {
+ assert_equals(theMock.getMaxDetectedFaces(), 7, "maxDetectedFaces");
+ assert_equals(theMock.getFastMode(), true, "maxDetectedFaces");
+ t.done();
+ }))
+ .catch(error => {
+ assert_unreached("Error creating detectors: " + error);
+ });
+}, "Test that FaceDetectionOptions are correctly propagated");
+</script>

Powered by Google App Engine
This is Rietveld 408576698