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

Side by Side Diff: third_party/WebKit/LayoutTests/shapedetection/detectshape-HTMLImageElement.html

Issue 2502723002: ShapeDetection: implement barcode detection, blink part (Closed)
Patch Set: haraken@ comments 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <script src="../resources/mojo-helpers.js"></script>
5 <script src="resources/mock-shapedetection.js"></script>
6 <body>
7 <img id='img' src='../media/content/greenbox.png'/>
8 </body>
9 <script>
10
11 var createTestForImageElement = function(detectorName, detectionResultTest) {
12 async_test(function(t) {
13 var img = document.getElementById("img");
14
15 var theMock = null;
16 mockShapeDetectionReady
17 .then(mock => {
18 theMock = mock;
19 var detector = eval("new " + detectorName + "();");
20 return detector;
21 })
22 .catch(error => {
23 assert_unreached("Error creating MockShapeDetection: " + error);
24 })
25 .then(detector => {
26 return detector.detect(img);
27 })
28 .then(detectionResult => {
29 detectionResultTest(detectionResult, theMock);
30 t.done();
31 })
32 .catch(error => {
33 assert_unreached("Error during detect(img): " + error);
34 });
35
36 }, 'Detector detect(HTMLImageElement)');
37 };
38
39 function FaceDetectorDetectionResultTest(detectionResult, mock) {
40 const imageReceivedByMock = mock.getFrameData();
41 assert_equals(imageReceivedByMock.byteLength, 2500, "Image length");
42 const GREEN_PIXEL = 0xFF00FF00;
43 assert_equals(imageReceivedByMock[0], GREEN_PIXEL, "Pixel color");
44 assert_equals(detectionResult.length, 3, "Number of faces");
45 }
46
47 function BarcodeDetectorDetectionResultTest(detectionResult, mock) {
48 assert_equals(detectionResult.length, 2, "Number of barcodes");
49 assert_equals(detectionResult[0].rawValue, "cats", "barcode 1");
50 assert_equals(detectionResult[1].rawValue, "dogs", "barcode 2");
51 }
52
53 // These tests verify that a Detector's detect() works on an HTMLImageElement.
54 // Use the mock mojo server implemented in mock-shapedetection.js.
55 generate_tests(createTestForImageElement, [
56 [ "Face", "FaceDetector", FaceDetectorDetectionResultTest ],
57 [ "Barcode", "BarcodeDetector", BarcodeDetectorDetectionResultTest ]
58 ]);
59
60 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698