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

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

Issue 2303013002: Add UMA metric to track usage of sending a mousedown to select elements. (Closed)
Patch Set: W3C auto test import CL. Created 4 years, 3 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
OLDNEW
(Empty)
1 function get_host_info() {
2
3 var HTTP_PORT = '{{ports[http][0]}}';
4 var HTTP_PORT2 = '{{ports[http][1]}}';
5 var HTTPS_PORT = '{{ports[https][0]}}';
6 var ORIGINAL_HOST = '{{host}}';
7 var REMOTE_HOST = (ORIGINAL_HOST === 'localhost') ? '127.0.0.1' : ('www1.' + O RIGINAL_HOST);
8
9 return {
10 HTTP_PORT: HTTP_PORT,
11 HTTP_PORT2: HTTP_PORT2,
12 HTTPS_PORT: HTTPS_PORT,
13 ORIGINAL_HOST: ORIGINAL_HOST,
14 REMOTE_HOST: REMOTE_HOST,
15
16 HTTP_ORIGIN: 'http://' + ORIGINAL_HOST + ':' + HTTP_PORT,
17 HTTPS_ORIGIN: 'https://' + ORIGINAL_HOST + ':' + HTTPS_PORT,
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,
20 HTTP_REMOTE_ORIGIN: 'http://' + REMOTE_HOST + ':' + HTTP_PORT,
21 HTTP_REMOTE_ORIGIN_WITH_DIFFERENT_PORT: 'http://' + REMOTE_HOST + ':' + HTTP _PORT2,
22 HTTPS_REMOTE_ORIGIN: 'https://' + REMOTE_HOST + ':' + HTTPS_PORT,
23 HTTPS_REMOTE_ORIGIN_WITH_CREDS: 'https://foo:bar@' + REMOTE_HOST + ':' + HTT PS_PORT,
24 };
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698