| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 # Settings for experimental desktop pinch-zoom support (with semantics | 217 # Settings for experimental desktop pinch-zoom support (with semantics |
| 218 # optimized for large screens). Pinch-zoom generally is implemented mainly | 218 # optimized for large screens). Pinch-zoom generally is implemented mainly |
| 219 # outside of blink (in the compositor) and doesn't require any settings. | 219 # outside of blink (in the compositor) and doesn't require any settings. |
| 220 # These settings are for an experimental modification to how pinch-zoom | 220 # These settings are for an experimental modification to how pinch-zoom |
| 221 # behaves. TODO(wjmaclean): link to design document. | 221 # behaves. TODO(wjmaclean): link to design document. |
| 222 # crbug.com/304869 tracks removal. | 222 # crbug.com/304869 tracks removal. |
| 223 pinchVirtualViewportEnabled initial=false | 223 pinchVirtualViewportEnabled initial=false |
| 224 useSolidColorScrollbars initial=false | 224 useSolidColorScrollbars initial=false |
| 225 pinchOverlayScrollbarThickness type=int, initial=0 | 225 pinchOverlayScrollbarThickness type=int, initial=0 |
| 226 | 226 |
| 227 # The rubber-band overscroll effect is implemented in Blink and is being moved |
| 228 # to the compositor thread. This will be set to true and eventually removed. |
| 229 # crbug.com/133097 |
| 230 rubberBandingOnCompositorThread initial=false |
| 231 |
| 227 mainFrameClipsContent initial=true | 232 mainFrameClipsContent initial=true |
| 228 | 233 |
| 229 | 234 |
| 230 # Presumably used by LayoutTests? Unclear. | 235 # Presumably used by LayoutTests? Unclear. |
| 231 useWideViewport initial=true, invalidate=ViewportDescription | 236 useWideViewport initial=true, invalidate=ViewportDescription |
| 232 loadWithOverviewMode initial=true, invalidate=ViewportDescription | 237 loadWithOverviewMode initial=true, invalidate=ViewportDescription |
| 233 | 238 |
| 234 | 239 |
| 235 # Font scale factor for accessibility, applied as part of text autosizing. | 240 # Font scale factor for accessibility, applied as part of text autosizing. |
| 236 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing | 241 accessibilityFontScaleFactor type=double, initial=1.0, invalidate=TextAutosizing |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery | 303 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery |
| 299 | 304 |
| 300 # Whether accessibility support is enabled at all. | 305 # Whether accessibility support is enabled at all. |
| 301 accessibilityEnabled initial=false, invalidate=AccessibilityState | 306 accessibilityEnabled initial=false, invalidate=AccessibilityState |
| 302 | 307 |
| 303 # If true, the value in password fields is exposed to assistive technologies. | 308 # If true, the value in password fields is exposed to assistive technologies. |
| 304 accessibilityPasswordValuesEnabled initial=false | 309 accessibilityPasswordValuesEnabled initial=false |
| 305 | 310 |
| 306 # If true, static text nodes expose inline text box children. | 311 # If true, static text nodes expose inline text box children. |
| 307 inlineTextBoxAccessibilityEnabled initial=false | 312 inlineTextBoxAccessibilityEnabled initial=false |
| OLD | NEW |