| 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 editableLinkBehavior type=EditableLinkBehavior, initial=EditableLinkDefaultBehav
ior | 5 editableLinkBehavior type=EditableLinkBehavior, initial=EditableLinkDefaultBehav
ior |
| 6 passwordEchoDurationInSeconds type=double, initial=1 | 6 passwordEchoDurationInSeconds type=double, initial=1 |
| 7 | 7 |
| 8 # Sets the magnification value for validation message timer. If the | 8 # Sets the magnification value for validation message timer. If the |
| 9 # magnification value is N, a validation message disappears automatically after | 9 # magnification value is N, a validation message disappears automatically after |
| 10 # <message length> * N / 1000 seconds. If N is equal to or less than 0, a | 10 # <message length> * N / 1000 seconds. If N is equal to or less than 0, a |
| 11 # validation message doesn't disappears automaticaly. | 11 # validation message doesn't disappears automaticaly. |
| 12 validationMessageTimerMagnification type=int, initial=50 | 12 validationMessageTimerMagnification type=int, initial=50 |
| 13 | 13 |
| 14 # Number of pixels below which 2D canvas is rendered in software | 14 # Number of pixels below which 2D canvas is rendered in software |
| 15 # even if hardware acceleration is enabled. | 15 # even if hardware acceleration is enabled. |
| 16 # Hardware acceleration is useful for large canvases where it can avoid the | 16 # Hardware acceleration is useful for large canvases where it can avoid the |
| 17 # pixel bandwidth between the CPU and GPU. But GPU acceleration comes at | 17 # pixel bandwidth between the CPU and GPU. But GPU acceleration comes at |
| 18 # a price - extra back-buffer and texture copy. Small canvases are also | 18 # a price - extra back-buffer and texture copy. Small canvases are also |
| 19 # widely used for stylized fonts. Anti-aliasing text in hardware at that | 19 # widely used for stylized fonts. Anti-aliasing text in hardware at that |
| 20 # scale is generally slower. So below a certain size it is better to | 20 # scale is generally slower. So below a certain size it is better to |
| 21 # draw canvas in software. | 21 # draw canvas in software. |
| 22 minimumAccelerated2dCanvasSize type=int, initial=257*256 | 22 minimumAccelerated2dCanvasSize type=int, initial=257*256 |
| 23 | 23 |
| 24 layoutFallbackWidth type=int, initial=980 | 24 layoutFallbackWidth type=int, initial=0 |
| 25 | 25 |
| 26 minimumFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 | 26 minimumFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 |
| 27 minimumLogicalFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 | 27 minimumLogicalFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 |
| 28 defaultFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 | 28 defaultFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 |
| 29 defaultFixedFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 | 29 defaultFixedFontSize type=int, initial=0, setNeedsStyleRecalcInAllFrames=1 |
| 30 | 30 |
| 31 editingBehaviorType type=EditingBehaviorType, initial=editingBehaviorTypeForPlat
form() | 31 editingBehaviorType type=EditingBehaviorType, initial=editingBehaviorTypeForPlat
form() |
| 32 | 32 |
| 33 caretBrowsingEnabled initial=false | 33 caretBrowsingEnabled initial=false |
| 34 localStorageEnabled initial=false | 34 localStorageEnabled initial=false |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled | 130 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled |
| 131 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled | 131 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled |
| 132 | 132 |
| 133 selectionIncludesAltImageText initial=false | 133 selectionIncludesAltImageText initial=false |
| 134 | 134 |
| 135 # This setting enables touch based text selection and editing. | 135 # This setting enables touch based text selection and editing. |
| 136 touchEditingEnabled initial=false | 136 touchEditingEnabled initial=false |
| 137 | 137 |
| 138 experimentalWebSocketEnabled initial=false | 138 experimentalWebSocketEnabled initial=false |
| 139 pinchVirtualViewportEnabled initial=false | 139 pinchVirtualViewportEnabled initial=false |
| OLD | NEW |