| Index: LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-protocol.js
|
| diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-protocol.js b/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-protocol.js
|
| index e071fa790156875fe0fdccb5182b12b76904ea67..974d60c67e22cd0025ade1d1ebf5460e7267c5ba 100644
|
| --- a/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-protocol.js
|
| +++ b/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/set-href-attribute-protocol.js
|
| @@ -44,11 +44,10 @@ shouldBe("a.href", "'https://www.mydomain.com/path/'");
|
| debug("Exception: " + e.description);
|
| }
|
|
|
| -// IE8 converts null to "null", which is not the right thing to do.
|
| debug("Set protocol to null");
|
| a.href = "https://www.mydomain.com/path/";
|
| a.protocol = null;
|
| -shouldBe("a.href", "'https://www.mydomain.com/path/'");
|
| +shouldBe("a.href", "'null://www.mydomain.com/path/'");
|
|
|
| // IE8 throws "Invalid argument" exception.
|
| try {
|
|
|