| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <script src="../../../resources/js-test-pre.js"></script> |
| </head> |
| <body> |
| <script> |
| description("Test URL protocol setter."); |
| |
| var a = document.createElement("a"); |
| a.setAttribute("href", "http://www.apple.com/"); |
| document.body.appendChild(a); |
| |
| shouldThrow("location.protocol = ''"); |
| shouldThrow("location.protocol = ':'"); |
| shouldThrow("location.protocol = 'é'"); |
| shouldThrow("location.protocol = '['"); |
| shouldThrow("location.protocol = '0'"); |
| |
| // IE raises exceptions for anchors, too - but Firefox does not. In either case, protocol shouldn't change. |
| try { a.protocol = '' } catch (ex) { } |
| try { a.protocol = 'é' } catch (ex) { } |
| try { a.protocol = '[' } catch (ex) { } |
| try { a.protocol = '0' } catch (ex) { } |
| shouldBe("a.protocol", "'http:'"); |
| |
| a.protocol = "https"; |
| shouldBe("a.href", "'https://www.apple.com/'"); |
| |
| a.protocol = "http:"; |
| shouldBe("a.href", "'http://www.apple.com/'"); |
| |
| a.protocol = "https://foobar"; |
| shouldBe("a.href", "'https://www.apple.com/'"); |
| </script> |
| <script src="../../../resources/js-test-post.js"></script> |
| </body> |
| </html> |