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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 # Leaving enabled for now to not change existing behavior. | 89 # Leaving enabled for now to not change existing behavior. |
90 downloadableBinaryFontsEnabled initial=true | 90 downloadableBinaryFontsEnabled initial=true |
91 | 91 |
92 xssAuditorEnabled initial=false | 92 xssAuditorEnabled initial=false |
93 unsafePluginPastingEnabled initial=true | 93 unsafePluginPastingEnabled initial=true |
94 treatIPAddressAsDomain initial=false | 94 treatIPAddressAsDomain initial=false |
95 | 95 |
96 acceleratedCompositingForVideoEnabled initial=true, invalidate=AcceleratedCompos
iting | 96 acceleratedCompositingForVideoEnabled initial=true, invalidate=AcceleratedCompos
iting |
97 acceleratedCompositingForPluginsEnabled initial=true, invalidate=AcceleratedComp
ositing | 97 acceleratedCompositingForPluginsEnabled initial=true, invalidate=AcceleratedComp
ositing |
98 acceleratedCompositingForCanvasEnabled initial=true, invalidate=AcceleratedCompo
siting | 98 acceleratedCompositingForCanvasEnabled initial=true, invalidate=AcceleratedCompo
siting |
99 acceleratedCompositingForAnimationEnabled initial=true, invalidate=AcceleratedCo
mpositing | |
100 acceleratedCompositingForFiltersEnabled initial=false, invalidate=AcceleratedCom
positing | 99 acceleratedCompositingForFiltersEnabled initial=false, invalidate=AcceleratedCom
positing |
101 acceleratedCompositingForFixedPositionEnabled initial=false, invalidate=Accelera
tedCompositing | 100 acceleratedCompositingForFixedPositionEnabled initial=false, invalidate=Accelera
tedCompositing |
102 acceleratedCompositingForOverflowScrollEnabled initial=false, invalidate=Acceler
atedCompositing | 101 acceleratedCompositingForOverflowScrollEnabled initial=false, invalidate=Acceler
atedCompositing |
103 acceleratedCompositingForFixedRootBackgroundEnabled initial=false | 102 acceleratedCompositingForFixedRootBackgroundEnabled initial=false |
104 acceleratedCompositingForGpuRasterizationHintEnabled initial=false, invalidate=A
cceleratedCompositing | 103 acceleratedCompositingForGpuRasterizationHintEnabled initial=false, invalidate=A
cceleratedCompositing |
105 | 104 |
106 forceCompositingMode initial=false, invalidate=AcceleratedCompositing | 105 forceCompositingMode initial=false, invalidate=AcceleratedCompositing |
107 | 106 |
108 # Works only in conjunction with forceCompositingMode. | 107 # Works only in conjunction with forceCompositingMode. |
109 compositedScrollingForFramesEnabled initial=false, invalidate=AcceleratedComposi
ting | 108 compositedScrollingForFramesEnabled initial=false, invalidate=AcceleratedComposi
ting |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 | 274 |
276 # Clients that execute script should call ScriptController::canExecuteScripts() | 275 # Clients that execute script should call ScriptController::canExecuteScripts() |
277 # instead of this function. ScriptController::canExecuteScripts() checks the | 276 # instead of this function. ScriptController::canExecuteScripts() checks the |
278 # HTML sandbox, plug-in sandboxing, and other important details. | 277 # HTML sandbox, plug-in sandboxing, and other important details. |
279 scriptEnabled initial=false, invalidate=ScriptEnable | 278 scriptEnabled initial=false, invalidate=ScriptEnable |
280 | 279 |
281 # Compensates for poor text legibility on mobile devices. This value is | 280 # Compensates for poor text legibility on mobile devices. This value is |
282 # multiplied by the font scale factor when performing text autosizing of | 281 # multiplied by the font scale factor when performing text autosizing of |
283 # websites that do not set an explicit viewport description. | 282 # websites that do not set an explicit viewport description. |
284 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing | 283 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing |
OLD | NEW |