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

Unified Diff: third_party/WebKit/LayoutTests/html/document-metadata/meta-attributes.html

Issue 2780363002: Rename subdirectory names in LayoutTests/html/. (Closed)
Patch Set: Created 3 years, 9 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/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>

Powered by Google App Engine
This is Rietveld 408576698