| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 have all APIs reflect the layout viewport. | 236 # Experiment to have all APIs reflect the layout viewport. |
| 237 # crbug.com/489206 tracks the experiment. | 237 # crbug.com/489206 tracks the experiment. |
| 238 inertVisualViewport initial=true | 238 inertVisualViewport initial=false |
| 239 | 239 |
| 240 # The rubber-band overscroll effect is implemented in Blink and is being moved | 240 # The rubber-band overscroll effect is implemented in Blink and is being moved |
| 241 # to the compositor thread. This will be set to true and eventually removed. | 241 # to the compositor thread. This will be set to true and eventually removed. |
| 242 # crbug.com/133097 | 242 # crbug.com/133097 |
| 243 rubberBandingOnCompositorThread initial=false | 243 rubberBandingOnCompositorThread initial=false |
| 244 | 244 |
| 245 # Font scale factor for accessibility, applied as part of text autosizing. | 245 # Font scale factor for accessibility, applied as part of text autosizing. |
| 246 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing | 246 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing |
| 247 | 247 |
| 248 # Only used by Layout Tests and inspector emulation. | 248 # Only used by Layout Tests and inspector emulation. |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 # Whether to disallow network fetches for parser blocking scripts in the main | 380 # Whether to disallow network fetches for parser blocking scripts in the main |
| 381 # frame inserted via document.write. | 381 # frame inserted via document.write. |
| 382 disallowFetchForDocWrittenScriptsInMainFrame initial=false | 382 disallowFetchForDocWrittenScriptsInMainFrame initial=false |
| 383 | 383 |
| 384 # The autoplay gesture override experiment is described in crbug.com/487345 . | 384 # The autoplay gesture override experiment is described in crbug.com/487345 . |
| 385 autoplayExperimentMode type=String, initial="off" | 385 autoplayExperimentMode type=String, initial="off" |
| 386 | 386 |
| 387 # When DevTools is emulating mobile device, frame resize may mean device size ha
s changed, | 387 # When DevTools is emulating mobile device, frame resize may mean device size ha
s changed, |
| 388 # which in turn affects media queries. | 388 # which in turn affects media queries. |
| 389 resizeIsDeviceSizeChange initial=false | 389 resizeIsDeviceSizeChange initial=false |
| OLD | NEW |