| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 webGLErrorsToConsoleEnabled initial=true | 61 webGLErrorsToConsoleEnabled initial=true |
| 62 accelerated2dCanvasEnabled initial=false | 62 accelerated2dCanvasEnabled initial=false |
| 63 antialiased2dCanvasEnabled initial=true | 63 antialiased2dCanvasEnabled initial=true |
| 64 accelerated2dCanvasMSAASampleCount type=int, initial=0 | 64 accelerated2dCanvasMSAASampleCount type=int, initial=0 |
| 65 | 65 |
| 66 asynchronousSpellCheckingEnabled initial=false | 66 asynchronousSpellCheckingEnabled initial=false |
| 67 | 67 |
| 68 mediaPlaybackRequiresUserGesture initial=false | 68 mediaPlaybackRequiresUserGesture initial=false |
| 69 | 69 |
| 70 scrollAnimatorEnabled initial=true | |
| 71 | |
| 72 # Used in layout tests for gesture tap highlights. Makes the highlights square | 70 # Used in layout tests for gesture tap highlights. Makes the highlights square |
| 73 # (rather than rounded) to make it possible to reftest the results. | 71 # (rather than rounded) to make it possible to reftest the results. |
| 74 mockGestureTapHighlightsEnabled initial=false | 72 mockGestureTapHighlightsEnabled initial=false |
| 75 | 73 |
| 76 shouldRespectImageOrientation initial=false | 74 shouldRespectImageOrientation initial=false |
| 77 | 75 |
| 78 # Limited use by features which behave differently depending on the input | 76 # Limited use by features which behave differently depending on the input |
| 79 # devices available. For example, the pointer and hover media queries. | 77 # devices available. For example, the pointer and hover media queries. |
| 80 # Note that we need to be careful when basing behavior or UI on this - | 78 # Note that we need to be careful when basing behavior or UI on this - |
| 81 # just because a device is present doesn't mean the user cares about it | 79 # just because a device is present doesn't mean the user cares about it |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 134 |
| 137 # These values are bit fields for the properties of available pointing devices | 135 # These values are bit fields for the properties of available pointing devices |
| 138 # and may take on multiple values (e.g. laptop with touchpad and touchscreen | 136 # and may take on multiple values (e.g. laptop with touchpad and touchscreen |
| 139 # has pointerType coarse *and* fine). | 137 # has pointerType coarse *and* fine). |
| 140 availablePointerTypes type=int, initial=PointerTypeNone, invalidate=MediaQuery | 138 availablePointerTypes type=int, initial=PointerTypeNone, invalidate=MediaQuery |
| 141 availableHoverTypes type=int, initial=HoverTypeNone, invalidate=MediaQuery | 139 availableHoverTypes type=int, initial=HoverTypeNone, invalidate=MediaQuery |
| 142 | 140 |
| 143 # These values specify properties of the user's primary pointing device only. | 141 # These values specify properties of the user's primary pointing device only. |
| 144 primaryPointerType type=PointerType, initial=PointerTypeNone, invalidate=MediaQu
ery | 142 primaryPointerType type=PointerType, initial=PointerTypeNone, invalidate=MediaQu
ery |
| 145 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery | 143 primaryHoverType type=HoverType, initial=HoverTypeNone, invalidate=MediaQuery |
| OLD | NEW |