| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 selectionIncludesAltImageText initial=false | 139 selectionIncludesAltImageText initial=false |
| 140 | 140 |
| 141 # Used by the android_webview to support a horizontal height auto-sizing | 141 # Used by the android_webview to support a horizontal height auto-sizing |
| 142 # mode. | 142 # mode. |
| 143 forceZeroLayoutHeight initial=false, invalidate=ViewportDescription | 143 forceZeroLayoutHeight initial=false, invalidate=ViewportDescription |
| 144 | 144 |
| 145 # Touch based text selection and editing on desktop. | 145 # Touch based text selection and editing on desktop. |
| 146 # crbug.com/304873 tracks removal once it's been enabled on all platforms. | 146 # crbug.com/304873 tracks removal once it's been enabled on all platforms. |
| 147 touchEditingEnabled initial=false | 147 touchEditingEnabled initial=false |
| 148 | 148 |
| 149 # Settings for experimental desktop pinch-zoom support (with semantics | |
| 150 # optimized for large screens). Pinch-zoom generally is implemented mainly | |
| 151 # outside of blink (in the compositor) and doesn't require any settings. | |
| 152 # These settings are for an experimental modification to how pinch-zoom | |
| 153 # behaves. TODO(wjmaclean): link to design document. | |
| 154 # crbug.com/304869 tracks removal. | |
| 155 pinchVirtualViewportEnabled initial=false | |
| 156 useSolidColorScrollbars initial=true | 149 useSolidColorScrollbars initial=true |
| 157 pinchOverlayScrollbarThickness type=int, initial=0 | |
| 158 | 150 |
| 159 mainFrameClipsContent initial=true | 151 mainFrameClipsContent initial=true |
| 160 | 152 |
| 161 | 153 |
| 162 # Presumably used by tests? Unclear. | 154 # Presumably used by tests? Unclear. |
| 163 useWideViewport initial=true, invalidate=ViewportDescription | 155 useWideViewport initial=true, invalidate=ViewportDescription |
| 164 loadWithOverviewMode initial=true, invalidate=ViewportDescription | 156 loadWithOverviewMode initial=true, invalidate=ViewportDescription |
| 165 | 157 |
| 166 | 158 |
| 167 # Font scale factor for accessibility, applied as part of text autosizing. | 159 # Font scale factor for accessibility, applied as part of text autosizing. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 # has pointerType coarse *and* fine). | 193 # has pointerType coarse *and* fine). |
| 202 availablePointerTypes type=int, initial=PointerTypeNone, invalidate=MediaQuery | 194 availablePointerTypes type=int, initial=PointerTypeNone, invalidate=MediaQuery |
| 203 availableHoverTypes type=int, initial=HoverTypeNone, invalidate=MediaQuery | 195 availableHoverTypes type=int, initial=HoverTypeNone, invalidate=MediaQuery |
| 204 | 196 |
| 205 # These values specify properties of the user's primary pointing device only. | 197 # These values specify properties of the user's primary pointing device only. |
| 206 primaryPointerType type=PointerType, initial=PointerTypeNone, invalidate=MediaQu
ery | 198 primaryPointerType type=PointerType, initial=PointerTypeNone, invalidate=MediaQu
ery |
| 207 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery | 199 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery |
| 208 | 200 |
| 209 accessibilityEnabled initial=false | 201 accessibilityEnabled initial=false |
| 210 inlineTextBoxAccessibilityEnabled initial=false | 202 inlineTextBoxAccessibilityEnabled initial=false |
| OLD | NEW |