| OLD | NEW |
| 1 # FIXME: Add support for global settings. | 1 # FIXME: Add support for global settings. |
| 2 # FIXME: Add support for custom getters/setters. | 2 # FIXME: Add support for custom getters/setters. |
| 3 | 3 |
| 4 defaultTextEncodingName type=String | 4 defaultTextEncodingName type=String |
| 5 ftpDirectoryTemplatePath type=String | 5 ftpDirectoryTemplatePath type=String |
| 6 localStorageDatabasePath type=String | 6 localStorageDatabasePath type=String |
| 7 editableLinkBehavior type=EditableLinkBehavior, initial=EditableLinkDefaultBehav
ior | 7 editableLinkBehavior type=EditableLinkBehavior, initial=EditableLinkDefaultBehav
ior |
| 8 textDirectionSubmenuInclusionBehavior type=TextDirectionSubmenuInclusionBehavior
, initial=TextDirectionSubmenuAutomaticallyIncluded | 8 textDirectionSubmenuInclusionBehavior type=TextDirectionSubmenuInclusionBehavior
, initial=TextDirectionSubmenuAutomaticallyIncluded |
| 9 passwordEchoDurationInSeconds type=double, initial=1 | 9 passwordEchoDurationInSeconds type=double, initial=1 |
| 10 | 10 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 passwordEchoEnabled initial=false | 119 passwordEchoEnabled initial=false |
| 120 visualWordMovementEnabled initial=false | 120 visualWordMovementEnabled initial=false |
| 121 shouldDisplaySubtitles initial=false, conditional=VIDEO_TRACK | 121 shouldDisplaySubtitles initial=false, conditional=VIDEO_TRACK |
| 122 shouldDisplayCaptions initial=false, conditional=VIDEO_TRACK | 122 shouldDisplayCaptions initial=false, conditional=VIDEO_TRACK |
| 123 shouldDisplayTextDescriptions initial=false, conditional=VIDEO_TRACK | 123 shouldDisplayTextDescriptions initial=false, conditional=VIDEO_TRACK |
| 124 scrollingCoordinatorEnabled initial=false | 124 scrollingCoordinatorEnabled initial=false |
| 125 scrollAnimatorEnabled initial=true, conditional=SMOOTH_SCROLLING | 125 scrollAnimatorEnabled initial=true, conditional=SMOOTH_SCROLLING |
| 126 | 126 |
| 127 shouldRespectImageOrientation initial=false | 127 shouldRespectImageOrientation initial=false |
| 128 requestAnimationFrameEnabled initial=true | 128 requestAnimationFrameEnabled initial=true |
| 129 deviceSupportsTouch initial=false | 129 deviceSupportsTouch initial=false #FIXME: Remove this http://crbug.com/136119 |
| 130 deviceSupportsMouse initial=true | 130 deviceSupportsMouse initial=true |
| 131 | 131 |
| 132 # For touch adjustment to apply, the compile option TOUCH_ADJUSTMENT must also b
e enabled. | 132 # For touch adjustment to apply, the compile option TOUCH_ADJUSTMENT must also b
e enabled. |
| 133 # This setting adds a means to dynamically disable the feature at runtime on sys
tems with | 133 # This setting adds a means to dynamically disable the feature at runtime on sys
tems with |
| 134 # support for touch adjustment. | 134 # support for touch adjustment. |
| 135 touchAdjustmentEnabled initial=true | 135 touchAdjustmentEnabled initial=true |
| 136 | 136 |
| 137 fixedPositionCreatesStackingContext initial=false | 137 fixedPositionCreatesStackingContext initial=false |
| 138 syncXHRInDocumentsEnabled initial=true | 138 syncXHRInDocumentsEnabled initial=true |
| 139 cookieEnabled initial=true | 139 cookieEnabled initial=true |
| (...skipping 13 matching lines...) Expand all Loading... |
| 153 frameFlatteningEnabled initial=false | 153 frameFlatteningEnabled initial=false |
| 154 | 154 |
| 155 allowCustomScrollbarInMainFrame initial=true | 155 allowCustomScrollbarInMainFrame initial=true |
| 156 webSecurityEnabled initial=true | 156 webSecurityEnabled initial=true |
| 157 spatialNavigationEnabled initial=false | 157 spatialNavigationEnabled initial=false |
| 158 | 158 |
| 159 # This setting adds a means to enable/disable touch initiated drag & drop. If | 159 # This setting adds a means to enable/disable touch initiated drag & drop. If |
| 160 # enabled, the user can initiate drag using long press. | 160 # enabled, the user can initiate drag using long press. |
| 161 touchDragDropEnabled initial=false | 161 touchDragDropEnabled initial=false |
| 162 | 162 |
| 163 # Sets primary input devices used for pointing. This is a bit flag of the |
| 164 # PointerDevice enums |
| 165 primaryPointerDevices type=int, initial=PointerDeviceUnknown |
| 166 |
| 163 unifiedTextCheckerEnabled initial=defaultUnifiedTextCheckerEnabled | 167 unifiedTextCheckerEnabled initial=defaultUnifiedTextCheckerEnabled |
| 164 | 168 |
| 165 backForwardCacheExpirationInterval type=double, initial=1800 | 169 backForwardCacheExpirationInterval type=double, initial=1800 |
| 166 | 170 |
| 167 # Some apps could have a default video poster if it is not set. | 171 # Some apps could have a default video poster if it is not set. |
| 168 defaultVideoPosterURL type=String | 172 defaultVideoPosterURL type=String |
| 169 | 173 |
| 170 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled | 174 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled |
| 171 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled | 175 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled |
| 172 | 176 |
| 173 selectionIncludesAltImageText initial=false | 177 selectionIncludesAltImageText initial=false |
| 174 useLegacyBackgroundSizeShorthandBehavior initial=false | 178 useLegacyBackgroundSizeShorthandBehavior initial=false |
| OLD | NEW |