| OLD | NEW |
| 1 { | 1 { |
| 2 "-- Template --": { | 2 "-- Template --": { |
| 3 "intro": "Top-level entries map a policy name to its test parameters, descri
bed below. The name of the top level entry should be of the form <policy name>[.
suffix]. The optional suffix is used for defining multiple test cases for a sing
le policy.", | 3 "intro": "Top-level entries map a policy name to its test parameters, descri
bed below. The name of the top level entry should be of the form <policy name>[.
suffix]. The optional suffix is used for defining multiple test cases for a sing
le policy.", |
| 4 | 4 |
| 5 "os": ["List of operating systems that support this policy. Valid values:",
"win", "linux", "mac", "chromeos", "Defaults to empty if not specified."], | 5 "os": ["List of operating systems that support this policy. Valid values:",
"win", "linux", "mac", "chromeos", "Defaults to empty if not specified."], |
| 6 "official_only": "Whether this policy exists in official builds only. Defaul
ts to |false| if not specified.", | 6 "official_only": "Whether this policy exists in official builds only. Defaul
ts to |false| if not specified.", |
| 7 "can_be_recommended": "Whether a recommended value may be set for the policy
. Defaults to |false| if not specified.", | 7 "can_be_recommended": "Whether a recommended value may be set for the policy
. Defaults to |false| if not specified.", |
| 8 "test_policy": "A policy dictionary that should make the preferences affecte
d by this policy become policy-controlled. Usually just sets the current policy.
Defaults to an empty dictionary if not specified.", | 8 "test_policy": "A policy dictionary that should make the preferences affecte
d by this policy become policy-controlled. Usually just sets the current policy.
Defaults to an empty dictionary if not specified.", |
| 9 "note": "If the policy affects any preferences, the following array should b
e specified with one entry per such preference.", | 9 "note": "If the policy affects any preferences, the following array should b
e specified with one entry per such preference.", |
| 10 "pref_mappings": [ | 10 "pref_mappings": [ |
| (...skipping 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1851 "SSLVersionMin": { | 1851 "SSLVersionMin": { |
| 1852 }, | 1852 }, |
| 1853 | 1853 |
| 1854 "SSLVersionFallbackMin": { | 1854 "SSLVersionFallbackMin": { |
| 1855 "os": ["win", "linux", "mac", "chromeos"], | 1855 "os": ["win", "linux", "mac", "chromeos"], |
| 1856 "test_policy": { "SSLVersionFallbackMin": "tls1.2" }, | 1856 "test_policy": { "SSLVersionFallbackMin": "tls1.2" }, |
| 1857 "pref_mappings": [] | 1857 "pref_mappings": [] |
| 1858 }, | 1858 }, |
| 1859 | 1859 |
| 1860 "RC4Enabled": { | 1860 "RC4Enabled": { |
| 1861 "os": ["win", "linux", "mac", "chromeos"], | |
| 1862 "test_policy": { "RC4Enabled": true }, | |
| 1863 "pref_mappings": [ | |
| 1864 { "pref": "ssl.rc4_enabled", | |
| 1865 "local_state": true | |
| 1866 } | |
| 1867 ] | |
| 1868 }, | 1861 }, |
| 1869 | 1862 |
| 1870 "WelcomePageOnOSUpgradeEnabled": { | 1863 "WelcomePageOnOSUpgradeEnabled": { |
| 1871 "os": ["win"], | 1864 "os": ["win"], |
| 1872 "test_policy": { "WelcomePageOnOSUpgradeEnabled": false }, | 1865 "test_policy": { "WelcomePageOnOSUpgradeEnabled": false }, |
| 1873 "pref_mappings": [ | 1866 "pref_mappings": [ |
| 1874 { "pref": "browser.welcome_page_on_os_upgrade_enabled", | 1867 { "pref": "browser.welcome_page_on_os_upgrade_enabled", |
| 1875 "local_state": true | 1868 "local_state": true |
| 1876 } | 1869 } |
| 1877 ] | 1870 ] |
| (...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2789 | 2782 |
| 2790 "AdditionalLaunchParameters": { | 2783 "AdditionalLaunchParameters": { |
| 2791 }, | 2784 }, |
| 2792 | 2785 |
| 2793 "SuppressChromeFrameTurndownPrompt": { | 2786 "SuppressChromeFrameTurndownPrompt": { |
| 2794 }, | 2787 }, |
| 2795 | 2788 |
| 2796 "SkipMetadataCheck": { | 2789 "SkipMetadataCheck": { |
| 2797 } | 2790 } |
| 2798 } | 2791 } |
| OLD | NEW |