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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/documents/dom-tree-accessors/document.title-03.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/imported/web-platform-tests/html/dom/documents/dom-tree-accessors/document.title-03.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/documents/dom-tree-accessors/document.title-03.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/documents/dom-tree-accessors/document.title-03.html
deleted file mode 100644
index 0ea3dd4a17dd9b77a24c7fad5b9083b537488141..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/dom/documents/dom-tree-accessors/document.title-03.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<title> document.title and space normalization </title>
-<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
-<link rel="help" href="https://html.spec.whatwg.org/multipage/#document.title">
-<script src="../../../../../../resources/testharness.js"></script>
-<script src="../../../../../../resources/testharnessreport.js"></script>
-<div id="log"></div>
-<script>
-function test_title(set, expected) {
- test(function() {
- document.title = set;
- assert_equals(document.title, expected);
- }, "document.title after setting to " + format_value(set));
-}
-
-test(function() {
- // Single space characters must be normalized. (WHATWG r4353)
- assert_equals(document.title, "document.title and space normalization");
-}, "document.title initial value");
-
-test_title("one space", "one space");
-test_title("two spaces", "two spaces");
-test_title("one\ttab", "one tab");
-test_title("two\t\ttabs", "two tabs");
-test_title("one\nnewline", "one newline");
-test_title("two\n\nnewlines", "two newlines");
-test_title("one\fform feed", "one form feed");
-test_title("two\f\fform feeds", "two form feeds");
-test_title("one\rcarriage return", "one carriage return");
-test_title("two\r\rcarriage returns", "two carriage returns");
-</script>

Powered by Google App Engine
This is Rietveld 408576698