Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_html.html |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_html.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_html.html |
deleted file mode 100644 |
index 4e7093b7c5090c83169a3cfc109297c67be931e4..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_html.html |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-<!DOCTYPE html> |
-<title>HTM document.contentType === 'text/html'</title> |
-<script src="../../../../../../resources/testharness.js"></script> |
-<script src="../../../../../../resources/testharnessreport.js"></script> |
-<div id=log></div> |
-<script> |
-async_test(function() { |
- var iframe = document.createElement('iframe'); |
- iframe.addEventListener('load', this.step_func_done(function() { |
- assert_equals(iframe.contentDocument.contentType, "text/html"); |
- }), false); |
- iframe.src = "../resources/blob.htm"; |
- document.body.appendChild(iframe); |
-}); |
-</script> |