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(); |