| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 174 |
| 175 fixedPositionCreatesStackingContext initial=false | 175 fixedPositionCreatesStackingContext initial=false |
| 176 syncXHRInDocumentsEnabled initial=true | 176 syncXHRInDocumentsEnabled initial=true |
| 177 cookieEnabled initial=true | 177 cookieEnabled initial=true |
| 178 mediaEnabled initial=true | 178 mediaEnabled initial=true |
| 179 DOMPasteAllowed initial=false | 179 DOMPasteAllowed initial=false |
| 180 | 180 |
| 181 threadedHTMLParser initial=false | 181 threadedHTMLParser initial=false |
| 182 useThreadedHTMLParserForDataURLs initial=false | 182 useThreadedHTMLParserForDataURLs initial=false |
| 183 | 183 |
| 184 applyPageScaleFactorInCompositor initial=false | |
| 185 | |
| 186 allowCustomScrollbarInMainFrame initial=true | 184 allowCustomScrollbarInMainFrame initial=true |
| 187 webSecurityEnabled initial=true | 185 webSecurityEnabled initial=true |
| 188 | 186 |
| 189 # Special keyboard navigation mode intented for platforms with no | 187 # Special keyboard navigation mode intented for platforms with no |
| 190 # proper mouse or touch support, such as a TV controller with a remote. | 188 # proper mouse or touch support, such as a TV controller with a remote. |
| 191 spatialNavigationEnabled initial=false | 189 spatialNavigationEnabled initial=false |
| 192 | 190 |
| 193 # This setting adds a means to enable/disable touch initiated drag & drop. If | 191 # This setting adds a means to enable/disable touch initiated drag & drop. If |
| 194 # enabled, the user can initiate drag using long press. | 192 # enabled, the user can initiate drag using long press. |
| 195 # crbug.com/304894 tracks removal once it's been enabled on all platforms. | 193 # crbug.com/304894 tracks removal once it's been enabled on all platforms. |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 touchEventEmulationEnabled initial=false | 278 touchEventEmulationEnabled initial=false |
| 281 | 279 |
| 282 | 280 |
| 283 # FIXME: This is a temporary flag and should be removed once | 281 # FIXME: This is a temporary flag and should be removed once |
| 284 # accelerated overflow scroll is ready (crbug.com/254111). | 282 # accelerated overflow scroll is ready (crbug.com/254111). |
| 285 compositorDrivenAcceleratedScrollingEnabled initial=false | 283 compositorDrivenAcceleratedScrollingEnabled initial=false |
| 286 | 284 |
| 287 # FIXME: This is a temporary flag and should be removed | 285 # FIXME: This is a temporary flag and should be removed |
| 288 # when squashing is ready. (crbug.com/261605) | 286 # when squashing is ready. (crbug.com/261605) |
| 289 layerSquashingEnabled initial=false | 287 layerSquashingEnabled initial=false |
| OLD | NEW |