| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 viewportMetaEnabled initial=false | 261 viewportMetaEnabled initial=false |
| 262 | 262 |
| 263 dnsPrefetchingEnabled initial=false, invalidate=DNSPrefetching | 263 dnsPrefetchingEnabled initial=false, invalidate=DNSPrefetching |
| 264 | 264 |
| 265 # FIXME: This is a temporary flag and should be removed | 265 # FIXME: This is a temporary flag and should be removed |
| 266 # when squashing is ready. (crbug.com/261605) | 266 # when squashing is ready. (crbug.com/261605) |
| 267 layerSquashingEnabled initial=false | 267 layerSquashingEnabled initial=false |
| 268 | 268 |
| 269 # Clients that execute script should call ScriptController::canExecuteScripts() | 269 # Clients that execute script should call ScriptController::canExecuteScripts() |
| 270 # instead of this function. ScriptController::canExecuteScripts() checks the | 270 # instead of this function. ScriptController::canExecuteScripts() checks the |
| 271 # HTML sandbox, plug-in sandboxing, and other important details. | 271 # HTML sandbox, plugin sandboxing, and other important details. |
| 272 scriptEnabled initial=false | 272 scriptEnabled initial=false |
| 273 | 273 |
| 274 # Compensates for poor text legibility on mobile devices. This value is | 274 # Compensates for poor text legibility on mobile devices. This value is |
| 275 # multiplied by the font scale factor when performing text autosizing of | 275 # multiplied by the font scale factor when performing text autosizing of |
| 276 # websites that do not set an explicit viewport description. | 276 # websites that do not set an explicit viewport description. |
| 277 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing | 277 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing |
| 278 | 278 |
| 279 # This value indicates the maximum number of bytes a document is allowed | 279 # This value indicates the maximum number of bytes a document is allowed |
| 280 # to transmit in Beacons (via navigator.sendBeacon()) -- Beacons are | 280 # to transmit in Beacons (via navigator.sendBeacon()) -- Beacons are |
| 281 # intended to be smaller payloads transmitted as a page is unloading, not | 281 # intended to be smaller payloads transmitted as a page is unloading, not |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 showContextMenuOnMouseUp initial=false | 318 showContextMenuOnMouseUp initial=false |
| 319 | 319 |
| 320 disableReadingFromCanvas initial=false | 320 disableReadingFromCanvas initial=false |
| 321 strictMixedContentChecking initial=false | 321 strictMixedContentChecking initial=false |
| 322 strictPowerfulFeatureRestrictions initial=false | 322 strictPowerfulFeatureRestrictions initial=false |
| 323 logDnsPrefetchAndPreconnect initial=false | 323 logDnsPrefetchAndPreconnect initial=false |
| 324 | 324 |
| 325 # If true, the UA styles will include viewportAndroid.css. It is used for | 325 # If true, the UA styles will include viewportAndroid.css. It is used for |
| 326 # Android, and dynamically set by the inspector for mobile emulation. | 326 # Android, and dynamically set by the inspector for mobile emulation. |
| 327 useMobileViewportStyle initial=false, invalidate=ViewportRule | 327 useMobileViewportStyle initial=false, invalidate=ViewportRule |
| OLD | NEW |