Home
last modified time | relevance | path

Searched refs:WEB_HOST (Results 1 – 19 of 19) sorted by relevance

/external/autotest/client/site_tests/policy_CookiesSessionOnlyForUrls/
Dpolicy_CookiesSessionOnlyForUrls.py48 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
52 self.WEB_HOST,
137 if policy_value and self.WEB_HOST in policy_value:
144 cookie_is_clear_on_exit = self._is_cookie_clear_on_exit(self.WEB_HOST)
145 if policy_value and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_CookiesBlockedForUrls/
Dpolicy_CookiesBlockedForUrls.py46 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
47 self.COOKIE_BLOCKED_SINGLE_FILE = [self.WEB_HOST]
49 self.WEB_HOST,
88 if policy_value and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_CookiesAllowedForUrls/
Dpolicy_CookiesAllowedForUrls.py45 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
46 self.COOKIE_ALLOWED_SINGLE_FILE = [self.WEB_HOST]
48 self.WEB_HOST,
86 if policy_value and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_PopupsBlockedForUrls/
Dpolicy_PopupsBlockedForUrls.py45 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
47 self.URL1_DATA = [self.WEB_HOST]
49 self.URL3_DATA = ['http://www.bing.com', self.WEB_HOST,
88 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_PopupsAllowedForUrls/
Dpolicy_PopupsAllowedForUrls.py44 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
46 self.URL1_DATA = [self.WEB_HOST]
48 self.URL3_DATA = ['http://www.bing.com', self.WEB_HOST,
87 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_ImagesAllowedForUrls/
Dpolicy_ImagesAllowedForUrls.py52 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
55 self.URL1_DATA = [self.WEB_HOST]
57 self.URL3_DATA = ['http://www.bing.com', self.WEB_HOST,
104 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_ImagesBlockedForUrls/
Dpolicy_ImagesBlockedForUrls.py52 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
54 self.URL1_DATA = [self.WEB_HOST]
56 self.URL3_DATA = ['http://www.bing.com', self.WEB_HOST,
102 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_JavaScriptAllowedForUrls/
Dpolicy_JavaScriptAllowedForUrls.py56 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
59 'SingleUrl_Allow': [self.WEB_HOST],
113 if policy_value is not None and (self.WEB_HOST in policy_value or
/external/autotest/client/site_tests/policy_JavaScriptBlockedForUrls/
Dpolicy_JavaScriptBlockedForUrls.py58 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
61 'SingleUrl_Block': [self.WEB_HOST],
117 if policy_value is not None and (self.WEB_HOST in policy_value or
/external/autotest/client/site_tests/policy_NotificationsBlockedForUrls/
Dpolicy_NotificationsBlockedForUrls.py47 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
48 self.INCLUDES_BLOCKED_URL = ['http://www.bing.com', self.WEB_HOST,
112 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_NotificationsAllowedForUrls/
Dpolicy_NotificationsAllowedForUrls.py46 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
47 self.INCLUDES_ALLOWED_URL = ['http://www.bing.com', self.WEB_HOST,
108 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_PluginsBlockedForUrls/
Dpolicy_PluginsBlockedForUrls.py49 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
50 self.INCLUDES_BLOCKED_URL = ['http://www.bing.com', self.WEB_HOST,
140 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_PluginsAllowedForUrls/
Dpolicy_PluginsAllowedForUrls.py54 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
55 self.INCLUDES_ALLOWED_URL = ['http://www.bing.com', self.WEB_HOST,
155 if policy_value is not None and self.WEB_HOST in policy_value:
/external/autotest/client/site_tests/policy_ExtensionPolicy/
Dpolicy_ExtensionPolicy.py28 self.EXTENSION_POLICY_URL = '%s/%s' % (self.WEB_HOST, POLICY_FILE)
/external/autotest/client/site_tests/policy_DefaultJavaScriptSetting/
Dpolicy_DefaultJavaScriptSetting.py28 self.TEST_URL = '%s/%s' % (self.WEB_HOST, self.TEST_FILE)
/external/autotest/client/site_tests/policy_URLWhitelist/
Dpolicy_URLWhitelist.py41 self.URL_BASE = '%s/%s' % (self.WEB_HOST, 'website')
/external/autotest/client/site_tests/policy_URLBlacklist/
Dpolicy_URLBlacklist.py21 self.URL_BASE = '%s/%s' % (self.WEB_HOST, 'website')
/external/autotest/client/site_tests/policy_ProxySettings/
Dpolicy_ProxySettings.py135 self.PAC_URL = '%s/%s' % (self.WEB_HOST, self.PAC_FILE)
/external/autotest/client/cros/enterprise/
Denterprise_policy_base.py103 WEB_HOST = 'http://localhost:%d' % WEB_PORT variable in EnterprisePolicyTest