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

Unified Diff: third_party/WebKit/LayoutTests/fast/shapedetection/shapedetection-creation.html

Issue 2369693002: Shapedetection module: Blink side implementation (Closed)
Patch Set: tests outside the [0, 1] range Created 4 years, 2 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/fast/shapedetection/shapedetection-creation.html
diff --git a/third_party/WebKit/LayoutTests/fast/shapedetection/shapedetection-creation.html b/third_party/WebKit/LayoutTests/fast/shapedetection/shapedetection-creation.html
index 324bc5d63297869a96b01a725de35ff94f9f4d6b..62cf022ba8678c03cf927927f4761e0bbbe3def9 100644
--- a/third_party/WebKit/LayoutTests/fast/shapedetection/shapedetection-creation.html
+++ b/third_party/WebKit/LayoutTests/fast/shapedetection/shapedetection-creation.html
@@ -3,22 +3,6 @@
<script src=../../resources/testharnessreport.js></script>
<script>
-// This test verifies that DetectedObject can not be created
-test(function() {
- assert_throws(new TypeError(),
- function() {
- var detectedObject = new DetectedObject();
- });
-}, 'DetectedObject should not be instantiable.');
-
-// This test verifies that Detector can not be created
-test(function() {
- assert_throws(new TypeError(),
- function() {
- var detector = new Detector();
- });
-}, 'Detector should not be instantiable.');
-
// This test verifies that DetectedFace can be created
test(function() {
var detectedFace = new DetectedFace();

Powered by Google App Engine
This is Rietveld 408576698