| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 presentationRequiresUserGesture initial=true | 101 presentationRequiresUserGesture initial=true |
| 102 | 102 |
| 103 scrollAnimatorEnabled initial=true | 103 scrollAnimatorEnabled initial=true |
| 104 | 104 |
| 105 # Used to disable threaded, compositor scrolling for testing purposes. | 105 # Used to disable threaded, compositor scrolling for testing purposes. |
| 106 # crbug.com/410974 tracks removal once alternative solutions for selective | 106 # crbug.com/410974 tracks removal once alternative solutions for selective |
| 107 # main thread scrolling are supported. | 107 # main thread scrolling are supported. |
| 108 threadedScrollingEnabled initial=true, invalidate=Style | 108 threadedScrollingEnabled initial=true, invalidate=Style |
| 109 | 109 |
| 110 # Handles frame-level scrolls via the root Layer instead of the FrameView. | |
| 111 # crbug.com/417782 tracks enabling this by default. | |
| 112 rootLayerScrolls initial=false | |
| 113 | |
| 114 # Used in layout tests for gesture tap highlights. Makes the highlights square | 110 # Used in layout tests for gesture tap highlights. Makes the highlights square |
| 115 # (rather than rounded) to make it possible to reftest the results. | 111 # (rather than rounded) to make it possible to reftest the results. |
| 116 mockGestureTapHighlightsEnabled initial=false | 112 mockGestureTapHighlightsEnabled initial=false |
| 117 | 113 |
| 118 shouldRespectImageOrientation initial=false | 114 shouldRespectImageOrientation initial=false |
| 119 | 115 |
| 120 # Limited use by features which behave differently depending on the input | 116 # Limited use by features which behave differently depending on the input |
| 121 # devices available. For example, the pointer and hover media queries. | 117 # devices available. For example, the pointer and hover media queries. |
| 122 # Note that we need to be careful when basing behavior or UI on this - | 118 # Note that we need to be careful when basing behavior or UI on this - |
| 123 # just because a device is present doesn't mean the user cares about it | 119 # just because a device is present doesn't mean the user cares about it |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 useDefaultImageInterpolationQuality initial=false | 406 useDefaultImageInterpolationQuality initial=false |
| 411 | 407 |
| 412 # Variant of the ParseHTMLOnMainThread experiment. One experiment immediately | 408 # Variant of the ParseHTMLOnMainThread experiment. One experiment immediately |
| 413 # tokenizes input bytes. The default is to tokenize with a post task. | 409 # tokenizes input bytes. The default is to tokenize with a post task. |
| 414 parseHTMLOnMainThreadSyncTokenize initial=false | 410 parseHTMLOnMainThreadSyncTokenize initial=false |
| 415 # Variant of the ParseHTMLOnMainThread experiment. This is designed to coalesce | 411 # Variant of the ParseHTMLOnMainThread experiment. This is designed to coalesce |
| 416 # TokenizedChunks when the experiment is running in threaded mode. | 412 # TokenizedChunks when the experiment is running in threaded mode. |
| 417 parseHTMLOnMainThreadCoalesceChunks initial=false | 413 parseHTMLOnMainThreadCoalesceChunks initial=false |
| 418 | 414 |
| 419 browserSideNavigationEnabled initial=false | 415 browserSideNavigationEnabled initial=false |
| OLD | NEW |