| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 unifiedTextCheckerEnabled initial=defaultUnifiedTextCheckerEnabled | 173 unifiedTextCheckerEnabled initial=defaultUnifiedTextCheckerEnabled |
| 174 | 174 |
| 175 # Some apps could have a default video poster if it is not set. | 175 # Some apps could have a default video poster if it is not set. |
| 176 defaultVideoPosterURL type=String | 176 defaultVideoPosterURL type=String |
| 177 | 177 |
| 178 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled | 178 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled |
| 179 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled | 179 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled |
| 180 | 180 |
| 181 selectionIncludesAltImageText initial=false | 181 selectionIncludesAltImageText initial=false |
| 182 selectionStrategy type=SelectionStrategy, initial=StrategyDefault |
| 182 useLegacyBackgroundSizeShorthandBehavior initial=false | 183 useLegacyBackgroundSizeShorthandBehavior initial=false |
| 183 | 184 |
| 184 # This quirk is to maintain compatibility with Android apps built on | 185 # This quirk is to maintain compatibility with Android apps built on |
| 185 # the Android SDK prior to and including version 18. | 186 # the Android SDK prior to and including version 18. |
| 186 # Presumably, this can be removed any time after 2015. | 187 # Presumably, this can be removed any time after 2015. |
| 187 # See http://crbug.com/282130. | 188 # See http://crbug.com/282130. |
| 188 viewportMetaZeroValuesQuirk initial=false | 189 viewportMetaZeroValuesQuirk initial=false |
| 189 | 190 |
| 190 # Another Android SDK <= 18 quirk, removable 2015. | 191 # Another Android SDK <= 18 quirk, removable 2015. |
| 191 # See http://crbug.com/295287 | 192 # See http://crbug.com/295287 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 inlineTextBoxAccessibilityEnabled initial=false | 310 inlineTextBoxAccessibilityEnabled initial=false |
| 310 | 311 |
| 311 # If true, context menu will be shown on mouse up instead of mouse down. | 312 # If true, context menu will be shown on mouse up instead of mouse down. |
| 312 # Typically enabled on Windows to match platform convention. | 313 # Typically enabled on Windows to match platform convention. |
| 313 showContextMenuOnMouseUp initial=false | 314 showContextMenuOnMouseUp initial=false |
| 314 | 315 |
| 315 disableReadingFromCanvas initial=false | 316 disableReadingFromCanvas initial=false |
| 316 strictMixedContentChecking initial=false | 317 strictMixedContentChecking initial=false |
| 317 strictPowerfulFeatureRestrictions initial=false | 318 strictPowerfulFeatureRestrictions initial=false |
| 318 logDnsPrefetchAndPreconnect initial=false | 319 logDnsPrefetchAndPreconnect initial=false |
| OLD | NEW |