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 |