| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 touchEditingEnabled initial=false | 226 touchEditingEnabled initial=false |
| 227 | 227 |
| 228 # Settings for experimental desktop pinch-zoom support (with semantics | 228 # Settings for experimental desktop pinch-zoom support (with semantics |
| 229 # optimized for large screens). Pinch-zoom generally is implemented mainly | 229 # optimized for large screens). Pinch-zoom generally is implemented mainly |
| 230 # outside of blink (in the compositor) and doesn't require any settings. | 230 # outside of blink (in the compositor) and doesn't require any settings. |
| 231 # These settings are for an experimental modification to how pinch-zoom | 231 # These settings are for an experimental modification to how pinch-zoom |
| 232 # behaves. crbug.com/304869 tracks removal. | 232 # behaves. crbug.com/304869 tracks removal. |
| 233 useSolidColorScrollbars initial=false | 233 useSolidColorScrollbars initial=false |
| 234 pinchOverlayScrollbarThickness type=int, initial=0 | 234 pinchOverlayScrollbarThickness type=int, initial=0 |
| 235 | 235 |
| 236 # Experiment to invert the scroll order of the layout and visual viewports |
| 237 # in some circumstances. Namely, during a pinch-zoom gesture and browser |
| 238 # generated scrolls like "scroll into view". |
| 239 invertViewportScrollOrder initial=false |
| 240 |
| 236 # The rubber-band overscroll effect is implemented in Blink and is being moved | 241 # The rubber-band overscroll effect is implemented in Blink and is being moved |
| 237 # to the compositor thread. This will be set to true and eventually removed. | 242 # to the compositor thread. This will be set to true and eventually removed. |
| 238 # crbug.com/133097 | 243 # crbug.com/133097 |
| 239 rubberBandingOnCompositorThread initial=false | 244 rubberBandingOnCompositorThread initial=false |
| 240 | 245 |
| 241 # Font scale factor for accessibility, applied as part of text autosizing. | 246 # Font scale factor for accessibility, applied as part of text autosizing. |
| 242 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing | 247 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing |
| 243 | 248 |
| 244 # Only used by Layout Tests and inspector emulation. | 249 # Only used by Layout Tests and inspector emulation. |
| 245 mediaTypeOverride type=String, initial="", invalidate=MediaQuery | 250 mediaTypeOverride type=String, initial="", invalidate=MediaQuery |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 # User style overrides for captions and subtitles | 342 # User style overrides for captions and subtitles |
| 338 textTrackBackgroundColor type=String | 343 textTrackBackgroundColor type=String |
| 339 textTrackFontFamily type=String | 344 textTrackFontFamily type=String |
| 340 textTrackFontStyle type=String | 345 textTrackFontStyle type=String |
| 341 textTrackFontVariant type=String | 346 textTrackFontVariant type=String |
| 342 textTrackTextColor type=String | 347 textTrackTextColor type=String |
| 343 textTrackTextShadow type=String | 348 textTrackTextShadow type=String |
| 344 textTrackTextSize type=String | 349 textTrackTextSize type=String |
| 345 | 350 |
| 346 lowPriorityIframes initial=false | 351 lowPriorityIframes initial=false |
| OLD | NEW |