| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 # One more Android SDK <= 18 quirk, removable 2015. | 193 # One more Android SDK <= 18 quirk, removable 2015. |
| 194 # See http://crbug.com/306548 | 194 # See http://crbug.com/306548 |
| 195 viewportMetaMergeContentQuirk initial=false | 195 viewportMetaMergeContentQuirk initial=false |
| 196 | 196 |
| 197 # This quirk is to maintain compatibility with Android apps. | 197 # This quirk is to maintain compatibility with Android apps. |
| 198 # It will be possible to remove it once WebSettings.{get|set}UseWideViewPort | 198 # It will be possible to remove it once WebSettings.{get|set}UseWideViewPort |
| 199 # API function will be removed. | 199 # API function will be removed. |
| 200 # See http://crbug.com/288037. | 200 # See http://crbug.com/288037. |
| 201 wideViewportQuirkEnabled initial=false | 201 wideViewportQuirkEnabled initial=false |
| 202 | 202 |
| 203 # Used by the android_webview to support a horizontal height auto-sizing | |
| 204 # mode. | |
| 205 forceZeroLayoutHeight initial=false, invalidate=ViewportDescription | |
| 206 | |
| 207 # Touch based text selection and editing on desktop. | 203 # Touch based text selection and editing on desktop. |
| 208 # crbug.com/304873 tracks removal once it's been enabled on all platforms. | 204 # crbug.com/304873 tracks removal once it's been enabled on all platforms. |
| 209 touchEditingEnabled initial=false | 205 touchEditingEnabled initial=false |
| 210 | 206 |
| 211 # Settings for experimental desktop pinch-zoom support (with semantics | 207 # Settings for experimental desktop pinch-zoom support (with semantics |
| 212 # optimized for large screens). Pinch-zoom generally is implemented mainly | 208 # optimized for large screens). Pinch-zoom generally is implemented mainly |
| 213 # outside of blink (in the compositor) and doesn't require any settings. | 209 # outside of blink (in the compositor) and doesn't require any settings. |
| 214 # These settings are for an experimental modification to how pinch-zoom | 210 # These settings are for an experimental modification to how pinch-zoom |
| 215 # behaves. TODO(wjmaclean): link to design document. | 211 # behaves. TODO(wjmaclean): link to design document. |
| 216 # crbug.com/304869 tracks removal. | 212 # crbug.com/304869 tracks removal. |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 # http://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen | 276 # http://fullscreen.spec.whatwg.org/#dom-element-requestfullscreen |
| 281 fullscreenSupported initial=true | 277 fullscreenSupported initial=true |
| 282 | 278 |
| 283 # FIXME: This is a temporary flag and should be removed once | 279 # FIXME: This is a temporary flag and should be removed once |
| 284 # the Android WebView framework supports fullscreen for non-media elements | 280 # the Android WebView framework supports fullscreen for non-media elements |
| 285 # (crbug.com/398485). | 281 # (crbug.com/398485). |
| 286 # This value is set to false if the platform does not support fullscreen | 282 # This value is set to false if the platform does not support fullscreen |
| 287 # for non-media elements. When set to true all the requests to enter fullscreen | 283 # for non-media elements. When set to true all the requests to enter fullscreen |
| 288 # on non-media elements will return an error. | 284 # on non-media elements will return an error. |
| 289 disallowFullscreenForNonMediaElements initial=false | 285 disallowFullscreenForNonMediaElements initial=false |
| OLD | NEW |