diff options
Diffstat (limited to 'WebCore/manual-tests/location-host-canonicalization.html')
-rw-r--r-- | WebCore/manual-tests/location-host-canonicalization.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/WebCore/manual-tests/location-host-canonicalization.html b/WebCore/manual-tests/location-host-canonicalization.html new file mode 100644 index 0000000..d13bd7d --- /dev/null +++ b/WebCore/manual-tests/location-host-canonicalization.html @@ -0,0 +1,15 @@ +<html> +<head> +<script> +function changeHost() { + window.location.host = "www.example.com:"; +} +</script> +</head> +<body> +<p>This will test the URL canonicalization by assigning a host with an empty port specifier to window.location.host</p> +<p>Clicking the following button should change the host in the current URL to "www.example.com:". It actually loading is not important - +if you see "www.example.com:0" the test has failed. You should see "www.example.com:"</p> +<input type="button" value="Click Here" onClick="changeHost();"> +</body> +</html> |