summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/location-host-canonicalization.html
blob: d13bd7d4ec78d86361ce0ac7687bc2f5be9e67f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>