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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-port.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 11 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/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-port.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-port.js b/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-port.js
deleted file mode 100644
index d7ea00a1de41556edcd0b84b4c96b0e0226bc77b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-port.js
+++ /dev/null
@@ -1,47 +0,0 @@
-description('Test setting the port attribute of the URL in HTMLAnchorElement.');
-
-var a = document.createElement('a');
-
-debug("Default port as number");
-a.href = "https://www.mydomain.com:8080/path/testurl.html?key=value";
-a.port = 443;
-shouldBe("a.href", "'https://www.mydomain.com/path/testurl.html?key=value'");
-
-debug("Default port as string");
-a.href = "https://www.mydomain.com:8080/path/testurl.html?key=value";
-a.port = "443";
-shouldBe("a.href", "'https://www.mydomain.com/path/testurl.html?key=value'");
-
-debug("Set port to 0");
-a.href = "https://www.mydomain.com:8080/path/testurl.html?key=value";
-a.port = "0";
-shouldBe("a.href", "'https://www.mydomain.com:0/path/testurl.html?key=value'");
-
-// Firefox 3.5.2 does not accept the port if any character is not a digit.
-debug("Set port to non-number");
-a.href = "https://www.mydomain.com:8080/path/testurl.html?key=value";
-a.port = "4a";
-shouldBe("a.href", "'https://www.mydomain.com:4/path/testurl.html?key=value'");
-
-// Firefox 3.5.2 does not accept the port if it is null.
-debug("Set port to null");
-a.href = "https://www.mydomain.com:8080/path/testurl.html?key=value";
-a.port = null;
-shouldBe("a.href", "'https://www.mydomain.com:0/path/testurl.html?key=value'");
-
-// Firefox 3.5.2 does not accept the port if it is null.
-debug("Set port to empty string");
-a.href = "https://www.mydomain.com:8080/path/testurl.html?key=value";
-a.port = "";
-shouldBe("a.href", "'https://www.mydomain.com:0/path/testurl.html?key=value'");
-
-debug("Set port to undefined");
-a.href = "https://www.mydomain.com:8080/path/testurl.html?key=value";
-a.port = undefined;
-shouldBe("a.href", "'https://www.mydomain.com:0/path/testurl.html?key=value'");
-
-// Firefox 3.5.2 does not allow setting the port on a URL with protocol foo: .
-debug("Set port to URL with foo: protocol");
-a.href = "foo://bar/";
-a.port = 50;
-shouldBe("a.href", "'foo://bar:50/'");

Powered by Google App Engine
This is Rietveld 408576698