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

Unified Diff: third_party/WebKit/LayoutTests/shapedetection/detection-HTMLVideoElement.html

Issue 2857803002: Shape Detection: reconnect LayoutTests (Closed)
Patch Set: Removed expectation files and corrected shapedetection-empty-input test Created 3 years, 8 months 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/detection-HTMLVideoElement.html
diff --git a/third_party/WebKit/LayoutTests/shapedetection/detection-HTMLVideoElement.html b/third_party/WebKit/LayoutTests/shapedetection/detection-HTMLVideoElement.html
index 35ce5e494d64eb5626d3ea5a2d54bee208e207cd..82dee8140a3e4ad80149e7ef6f4a2c9d2e4c8bc0 100644
--- a/third_party/WebKit/LayoutTests/shapedetection/detection-HTMLVideoElement.html
+++ b/third_party/WebKit/LayoutTests/shapedetection/detection-HTMLVideoElement.html
@@ -39,7 +39,7 @@ var createTestForVideoElement = function(createDetector, mockReady,
});
video.load();
- }, "Detector detect(HTMLVideoElement)");
+ });
};
function FaceDetectorDetectionResultTest(detectionResult, mock) {
@@ -67,19 +67,19 @@ function TextDetectorDetectionResultTest(detectionResult, mock) {
// Use the mock mojo server implemented in mock-{barcode,face}detection.js.
generate_tests(createTestForVideoElement, [
[
- "Face",
+ "Face - detect(HTMLVideoElement)",
() => { return new FaceDetector(); },
() => { return mockFaceDetectionProviderReady; },
FaceDetectorDetectionResultTest
],
[
- "Barcode",
+ "Barcode - detect(HTMLVideoElement)",
() => { return new BarcodeDetector(); },
() => { return mockBarcodeDetectionReady; },
BarcodeDetectorDetectionResultTest
],
[
- "Text",
+ "Text - detect(HTMLVideoElement)",
() => { return new TextDetector(); },
() => { return mockTextDetectionReady; },
TextDetectorDetectionResultTest

Powered by Google App Engine
This is Rietveld 408576698