| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 shouldRespectImageOrientation initial=false | 114 shouldRespectImageOrientation initial=false |
| 115 | 115 |
| 116 # Limited use by features which behave differently depending on the input | 116 # Limited use by features which behave differently depending on the input |
| 117 # devices available. For example, the pointer and hover media queries. | 117 # devices available. For example, the pointer and hover media queries. |
| 118 # Note that we need to be careful when basing behavior or UI on this - | 118 # Note that we need to be careful when basing behavior or UI on this - |
| 119 # just because a device is present doesn't mean the user cares about it | 119 # just because a device is present doesn't mean the user cares about it |
| 120 # or uses it (i.e. Chromebook Pixel users generally don't want to give up | 120 # or uses it (i.e. Chromebook Pixel users generally don't want to give up |
| 121 # screen real estate just because they happen to have a touchscreen). | 121 # screen real estate just because they happen to have a touchscreen). |
| 122 deviceSupportsTouch initial=false | 122 deviceSupportsTouch initial=false |
| 123 deviceSupportsMouse initial=true | |
| 124 | 123 |
| 125 # This value indicates the number of simultaneous multi-touch points supported | 124 # This value indicates the number of simultaneous multi-touch points supported |
| 126 # by the currently connected screen/digitizer that supports the most points. | 125 # by the currently connected screen/digitizer that supports the most points. |
| 127 # From Pointer Events spec: | 126 # From Pointer Events spec: |
| 128 # http://www.w3.org/TR/pointerevents/#widl-Navigator-maxTouchPoints | 127 # http://www.w3.org/TR/pointerevents/#widl-Navigator-maxTouchPoints |
| 129 maxTouchPoints type=int, initial=0 | 128 maxTouchPoints type=int, initial=0 |
| 130 | 129 |
| 131 # Whether touch gestures should be "fuzzed" to nearest touch targets. | 130 # Whether touch gestures should be "fuzzed" to nearest touch targets. |
| 132 # It's expected that this is enabled everywhere by default, but it may be | 131 # It's expected that this is enabled everywhere by default, but it may be |
| 133 # disabled for testing purposes as the algorithm is not yet perfect. | 132 # disabled for testing purposes as the algorithm is not yet perfect. |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 | 426 |
| 428 # Whether download UI should be hidden for the current page content. | 427 # Whether download UI should be hidden for the current page content. |
| 429 hideDownloadUI initial=false | 428 hideDownloadUI initial=false |
| 430 | 429 |
| 431 # Whether or not to issue range requests for images and show placeholders. | 430 # Whether or not to issue range requests for images and show placeholders. |
| 432 fetchImagePlaceholders initial=false | 431 fetchImagePlaceholders initial=false |
| 433 | 432 |
| 434 # Whether the frame is a presentation receiver and should expose | 433 # Whether the frame is a presentation receiver and should expose |
| 435 # `navigator.presentation.receiver`. | 434 # `navigator.presentation.receiver`. |
| 436 presentationReceiver initial=false | 435 presentationReceiver initial=false |
| OLD | NEW |