Index: third_party/WebKit/LayoutTests/html/document-metadata/meta-attributes.html |
diff --git a/third_party/WebKit/LayoutTests/html/document-metadata/meta-attributes.html b/third_party/WebKit/LayoutTests/html/document-metadata/meta-attributes.html |
deleted file mode 100644 |
index e7b5555875ac52088f06c00e44eb8826b6b9281b..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/html/document-metadata/meta-attributes.html |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-<html> |
-<head> |
-<meta id="test" name="foo" scheme="bar" http-equiv="content-type" content="text/html; charset=UTF-8"> |
-</head> |
-<body> |
-You should see 5 lines with "SUCCESS" below: |
-<script> |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-function checkExpected(actual, expected) |
-{ |
- if (actual != expected) |
- document.writeln("<p>FAILURE: expected \"" + expected + "\", actual \"" + actual + "\"</p>"); |
- else |
- document.writeln("<p>SUCCESS (value: \"" + actual + "\")</p>"); |
-} |
- |
-var metaTag = document.getElementById("test"); |
-checkExpected(metaTag, "[object HTMLMetaElement]"); |
-checkExpected(metaTag.name, "foo"); |
-checkExpected(metaTag.scheme, "bar"); |
-checkExpected(metaTag.httpEquiv, "content-type"); |
-checkExpected(metaTag.content, "text/html; charset=UTF-8"); |
-</script> |
- |
-</body> |
-</html> |