Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/common/get-host-info.sub.js

Issue 2376103007: Import wpt@09907a9c4bcee14986431d53e4381384c7c69107 (Closed)
Patch Set: update platform expectations Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/custom-elements/CustomElementRegistry.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 function get_host_info() { 1 function get_host_info() {
2 2
3 var HTTP_PORT = '{{ports[http][0]}}'; 3 var HTTP_PORT = '{{ports[http][0]}}';
4 var HTTP_PORT2 = '{{ports[http][1]}}'; 4 var HTTP_PORT2 = '{{ports[http][1]}}';
5 var HTTPS_PORT = '{{ports[https][0]}}'; 5 var HTTPS_PORT = '{{ports[https][0]}}';
6 var ORIGINAL_HOST = '{{host}}'; 6 var ORIGINAL_HOST = '{{host}}';
7 var REMOTE_HOST = (ORIGINAL_HOST === 'localhost') ? '127.0.0.1' : ('www1.' + O RIGINAL_HOST); 7 var REMOTE_HOST = (ORIGINAL_HOST === 'localhost') ? '127.0.0.1' : ('www1.' + O RIGINAL_HOST);
8 8
9 return { 9 return {
10 HTTP_PORT: HTTP_PORT, 10 HTTP_PORT: HTTP_PORT,
11 HTTP_PORT2: HTTP_PORT2, 11 HTTP_PORT2: HTTP_PORT2,
12 HTTPS_PORT: HTTPS_PORT, 12 HTTPS_PORT: HTTPS_PORT,
13 ORIGINAL_HOST: ORIGINAL_HOST, 13 ORIGINAL_HOST: ORIGINAL_HOST,
14 REMOTE_HOST: REMOTE_HOST, 14 REMOTE_HOST: REMOTE_HOST,
15 15
16 HTTP_ORIGIN: 'http://' + ORIGINAL_HOST + ':' + HTTP_PORT, 16 HTTP_ORIGIN: 'http://' + ORIGINAL_HOST + ':' + HTTP_PORT,
17 HTTPS_ORIGIN: 'https://' + ORIGINAL_HOST + ':' + HTTPS_PORT, 17 HTTPS_ORIGIN: 'https://' + ORIGINAL_HOST + ':' + HTTPS_PORT,
18 HTTPS_ORIGIN_WITH_CREDS: 'https://foo:bar@' + ORIGINAL_HOST + ':' + HTTPS_PO RT, 18 HTTPS_ORIGIN_WITH_CREDS: 'https://foo:bar@' + ORIGINAL_HOST + ':' + HTTPS_PO RT,
19 HTTP_ORIGIN_WITH_DIFFERENT_PORT: 'http://' + ORIGINAL_HOST + ':' + HTTP_PORT 2, 19 HTTP_ORIGIN_WITH_DIFFERENT_PORT: 'http://' + ORIGINAL_HOST + ':' + HTTP_PORT 2,
20 HTTP_REMOTE_ORIGIN: 'http://' + REMOTE_HOST + ':' + HTTP_PORT, 20 HTTP_REMOTE_ORIGIN: 'http://' + REMOTE_HOST + ':' + HTTP_PORT,
21 HTTP_REMOTE_ORIGIN_WITH_DIFFERENT_PORT: 'http://' + REMOTE_HOST + ':' + HTTP _PORT2, 21 HTTP_REMOTE_ORIGIN_WITH_DIFFERENT_PORT: 'http://' + REMOTE_HOST + ':' + HTTP _PORT2,
22 HTTPS_REMOTE_ORIGIN: 'https://' + REMOTE_HOST + ':' + HTTPS_PORT, 22 HTTPS_REMOTE_ORIGIN: 'https://' + REMOTE_HOST + ':' + HTTPS_PORT,
23 HTTPS_REMOTE_ORIGIN_WITH_CREDS: 'https://foo:bar@' + REMOTE_HOST + ':' + HTT PS_PORT, 23 HTTPS_REMOTE_ORIGIN_WITH_CREDS: 'https://foo:bar@' + REMOTE_HOST + ':' + HTT PS_PORT,
24 }; 24 };
25 } 25 }
26
27 function get_port(loc) {
28 // When a default port is used, location.port returns the empty string.
29 // To compare with wptserve `ports` substitution we need a port...
30 // loc can be Location/<a>/<area>/URL, but assumes http/https only.
31 if (loc.port) {
32 return loc.port;
33 }
34 return loc.protocol === 'https:' ? '443' : '80';
35 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/imported/wpt/custom-elements/CustomElementRegistry.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698