OLD | NEW |
1 # Defines properties which are available on the Settings object. | 1 # Defines properties which are available on the Settings object. |
2 # | 2 # |
3 # Please think carefully before adding a new Setting. Some questions to | 3 # Please think carefully before adding a new Setting. Some questions to |
4 # consider are: | 4 # consider are: |
5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things | 5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things |
6 # which we support either values of at runtime. Features are set at renderer | 6 # which we support either values of at runtime. Features are set at renderer |
7 # process startup and are never changed. Features also tend to be set to a | 7 # process startup and are never changed. Features also tend to be set to a |
8 # value based on the platform or the stability of the code in question, where | 8 # value based on the platform or the stability of the code in question, where |
9 # as settings both codepaths need to be stable. | 9 # as settings both codepaths need to be stable. |
10 # - How will you ensure test coverage of all relevant values of your setting? | 10 # - How will you ensure test coverage of all relevant values of your setting? |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 acceleratedFiltersEnabled initial=false | 90 acceleratedFiltersEnabled initial=false |
91 regionBasedColumnsEnabled initial=false | 91 regionBasedColumnsEnabled initial=false |
92 | 92 |
93 # FIXME: This should really be disabled by default as it makes platforms that | 93 # FIXME: This should really be disabled by default as it makes platforms that |
94 # don't support the feature download files they can't use by. | 94 # don't support the feature download files they can't use by. |
95 # Leaving enabled for now to not change existing behavior. | 95 # Leaving enabled for now to not change existing behavior. |
96 downloadableBinaryFontsEnabled initial=true | 96 downloadableBinaryFontsEnabled initial=true |
97 | 97 |
98 xssAuditorEnabled initial=false | 98 xssAuditorEnabled initial=false |
99 unsafePluginPastingEnabled initial=true | 99 unsafePluginPastingEnabled initial=true |
| 100 treatIPAddressAsDomain initial=false |
100 | 101 |
101 acceleratedCompositingFor3DTransformsEnabled initial=true | 102 acceleratedCompositingFor3DTransformsEnabled initial=true |
102 acceleratedCompositingForVideoEnabled initial=true | 103 acceleratedCompositingForVideoEnabled initial=true |
103 acceleratedCompositingForPluginsEnabled initial=true | 104 acceleratedCompositingForPluginsEnabled initial=true |
104 acceleratedCompositingForCanvasEnabled initial=true | 105 acceleratedCompositingForCanvasEnabled initial=true |
105 acceleratedCompositingForAnimationEnabled initial=true | 106 acceleratedCompositingForAnimationEnabled initial=true |
106 acceleratedCompositingForFiltersEnabled initial=false | 107 acceleratedCompositingForFiltersEnabled initial=false |
107 acceleratedCompositingForFixedPositionEnabled initial=false | 108 acceleratedCompositingForFixedPositionEnabled initial=false |
108 acceleratedCompositingForOverflowScrollEnabled initial=false | 109 acceleratedCompositingForOverflowScrollEnabled initial=false |
109 acceleratedCompositingForTransitionEnabled initial=false | 110 acceleratedCompositingForTransitionEnabled initial=false |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 # behaves. TODO(wjmaclean): link to design document. | 243 # behaves. TODO(wjmaclean): link to design document. |
243 # crbug.com/304869 tracks removal. | 244 # crbug.com/304869 tracks removal. |
244 pinchVirtualViewportEnabled initial=false | 245 pinchVirtualViewportEnabled initial=false |
245 useSolidColorScrollbars initial=false | 246 useSolidColorScrollbars initial=false |
246 | 247 |
247 mainFrameClipsContent initial=true | 248 mainFrameClipsContent initial=true |
248 | 249 |
249 # Enable decoration shadow nodes to test password genration feature | 250 # Enable decoration shadow nodes to test password genration feature |
250 # crbug.com/114092. This flag should not be enabled for production. | 251 # crbug.com/114092. This flag should not be enabled for production. |
251 passwordGenerationDecorationEnabled initial=false | 252 passwordGenerationDecorationEnabled initial=false |
OLD | NEW |