| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 # A mostly-stable performance optimization. crbug.com/304518 tracks removal. | 157 # A mostly-stable performance optimization. crbug.com/304518 tracks removal. |
| 158 compositorTouchHitTesting initial=true | 158 compositorTouchHitTesting initial=true |
| 159 | 159 |
| 160 syncXHRInDocumentsEnabled initial=true | 160 syncXHRInDocumentsEnabled initial=true |
| 161 cookieEnabled initial=true | 161 cookieEnabled initial=true |
| 162 navigateOnDragDrop initial=true | 162 navigateOnDragDrop initial=true |
| 163 DOMPasteAllowed initial=false | 163 DOMPasteAllowed initial=false |
| 164 | 164 |
| 165 // FIXME: Remove this. Unfortunately many webkit_unit_tests | 165 // FIXME: Remove this. Unfortunately many webkit_unit_tests |
| 166 // depend on parsing being synchronous. crbug.com/366354 | 166 // depend on parsing being synchronous. crbug.com/366354 |
| 167 threadedHTMLParser initial=true | 167 threadedHTMLParser initial=false |
| 168 useThreadedHTMLParserForDataURLs initial=false | 168 useThreadedHTMLParserForDataURLs initial=false |
| 169 | 169 |
| 170 allowCustomScrollbarInMainFrame initial=true | 170 allowCustomScrollbarInMainFrame initial=true |
| 171 webSecurityEnabled initial=true | 171 webSecurityEnabled initial=true |
| 172 | 172 |
| 173 # Special keyboard navigation mode intented for platforms with no | 173 # Special keyboard navigation mode intented for platforms with no |
| 174 # proper mouse or touch support, such as a TV controller with a remote. | 174 # proper mouse or touch support, such as a TV controller with a remote. |
| 175 spatialNavigationEnabled initial=false | 175 spatialNavigationEnabled initial=false |
| 176 | 176 |
| 177 # This setting adds a means to enable/disable touch initiated drag & drop. If | 177 # This setting adds a means to enable/disable touch initiated drag & drop. If |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 | 271 |
| 272 # Clients that execute script should call ScriptController::canExecuteScripts() | 272 # Clients that execute script should call ScriptController::canExecuteScripts() |
| 273 # instead of this function. ScriptController::canExecuteScripts() checks the | 273 # instead of this function. ScriptController::canExecuteScripts() checks the |
| 274 # HTML sandbox, plug-in sandboxing, and other important details. | 274 # HTML sandbox, plug-in sandboxing, and other important details. |
| 275 scriptEnabled initial=false, invalidate=ScriptEnable | 275 scriptEnabled initial=false, invalidate=ScriptEnable |
| 276 | 276 |
| 277 # Compensates for poor text legibility on mobile devices. This value is | 277 # Compensates for poor text legibility on mobile devices. This value is |
| 278 # multiplied by the font scale factor when performing text autosizing of | 278 # multiplied by the font scale factor when performing text autosizing of |
| 279 # websites that do not set an explicit viewport description. | 279 # websites that do not set an explicit viewport description. |
| 280 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing | 280 deviceScaleAdjustment type=double, initial=1.0, invalidate=TextAutosizing |
| OLD | NEW |