Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Element / hostname-host.html
blob1069c5c5110ba79ca4f57e93fd3ae59e1e29eefa
1 <html>
2 <head>
3 <script>
4 function load() {
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 str = "";
8 for (i=0;i<10;i++)
9 str += "Hostname is " + document.links[i].hostname + ". Host is " + document.links[i].host + "<br>";
10 document.getElementById("hostname_host").innerHTML = str;
12 </script>
13 </head>
14 <body onload="load()">
15 <a href="http://dev.w3.org:80/html5/spec/infrastructure.html#interfaces-for-url-manipulation">http with default port</a><br>
16 <a href="https://dev.w3.org:443/html5/spec/infrastructure.html#interfaces-for-url-manipulation">https with default port</a><br>
17 <a href="ftp://dev.w3.org:21/html5/spec/infrastructure.html#interfaces-for-url-manipulation">ftp with default port</a><br>
18 <br>
19 <a href="http://dev.w3.org:123/html5/spec/infrastructure.html#interfaces-for-url-manipulation">http with non-default port</a><br>
20 <a href="https://dev.w3.org:123/html5/spec/infrastructure.html#interfaces-for-url-manipulation">https with non-default port</a><br>
21 <a href="ftp://dev.w3.org:123/html5/spec/infrastructure.html#interfaces-for-url-manipulation">ftp with non-default port</a><br>
22 <br>
23 <a href="http://dev.w3.org/html5/spec/infrastructure.html#interfaces-for-url-manipulation">http without port</a><br>
24 <a href="https://dev.w3.org/html5/spec/infrastructure.html#interfaces-for-url-manipulation">https without port</a><br>
25 <a href="ftp://dev.w3.org/html5/spec/infrastructure.html#interfaces-for-url-manipulation">ftp without port</a><br>
26 <br>
27 <a href="http://dev.w3.org:0/html5/spec/infrastructure.html#interfaces-for-url-manipulation">http with port 0</a><br>
28 <span id="hostname_host"></span>
30 </body>
31 </html>