| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/get-href-attribute-port.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/get-href-attribute-port.js b/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/get-href-attribute-port.js
|
| deleted file mode 100644
|
| index 9afcda616ff38232716a1b8b47426ec7960137ee..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/get-href-attribute-port.js
|
| +++ /dev/null
|
| @@ -1,14 +0,0 @@
|
| -description('Test getting the port attribute of the URL in HTMLAnchorElement.');
|
| -
|
| -var a = document.createElement('a');
|
| -
|
| -debug("Default port is empty");
|
| -shouldBe("a.port", "''");
|
| -
|
| -debug("Unspecified port should return empty string");
|
| -a.href = "http://example.com/";
|
| -shouldBe("a.port", "''");
|
| -
|
| -debug("Empty port should be empty");
|
| -a.href = "http://example.com:/";
|
| -shouldBe("a.port", "''");
|
|
|