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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 # From Pointer Events spec: | 141 # From Pointer Events spec: |
142 # http://www.w3.org/TR/pointerevents/#widl-Navigator-maxTouchPoints | 142 # http://www.w3.org/TR/pointerevents/#widl-Navigator-maxTouchPoints |
143 maxTouchPoints type=int, initial=0 | 143 maxTouchPoints type=int, initial=0 |
144 | 144 |
145 # Whether touch gestures should be "fuzzed" to nearest touch targets. | 145 # Whether touch gestures should be "fuzzed" to nearest touch targets. |
146 # It's expected that this is enabled everywhere by default, but it may be | 146 # It's expected that this is enabled everywhere by default, but it may be |
147 # disabled for testing purposes as the algorithm is not yet perfect. | 147 # disabled for testing purposes as the algorithm is not yet perfect. |
148 # crbug.com/304895 tracks removal once we're satisfied with the algorithm. | 148 # crbug.com/304895 tracks removal once we're satisfied with the algorithm. |
149 touchAdjustmentEnabled initial=true | 149 touchAdjustmentEnabled initial=true |
150 | 150 |
151 # A mostly-stable performance optimization. crbug.com/304518 tracks removal. | |
152 compositorTouchHitTesting initial=true | |
153 | |
154 syncXHRInDocumentsEnabled initial=true | 151 syncXHRInDocumentsEnabled initial=true |
155 cookieEnabled initial=true | 152 cookieEnabled initial=true |
156 navigateOnDragDrop initial=true | 153 navigateOnDragDrop initial=true |
157 DOMPasteAllowed initial=false | 154 DOMPasteAllowed initial=false |
158 | 155 |
159 allowCustomScrollbarInMainFrame initial=true | 156 allowCustomScrollbarInMainFrame initial=true |
160 webSecurityEnabled initial=true | 157 webSecurityEnabled initial=true |
161 | 158 |
162 # Special keyboard navigation mode intented for platforms with no | 159 # Special keyboard navigation mode intented for platforms with no |
163 # proper mouse or touch support, such as a TV controller with a remote. | 160 # proper mouse or touch support, such as a TV controller with a remote. |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 | 263 |
267 # This value indicates the maximum number of bytes a document is allowed | 264 # This value indicates the maximum number of bytes a document is allowed |
268 # to transmit in Beacons (via navigator.sendBeacon()) -- Beacons are | 265 # to transmit in Beacons (via navigator.sendBeacon()) -- Beacons are |
269 # intended to be smaller payloads transmitted as a page is unloading, not | 266 # intended to be smaller payloads transmitted as a page is unloading, not |
270 # a general (one-way) network transmission API. | 267 # a general (one-way) network transmission API. |
271 # The spec ( https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/Beacon/Overview.h
tml ) | 268 # The spec ( https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/Beacon/Overview.h
tml ) |
272 # does not proscribe an upper limit, but allows for it -- the underlying | 269 # does not proscribe an upper limit, but allows for it -- the underlying |
273 # API will return 'false' in that case. | 270 # API will return 'false' in that case. |
274 maxBeaconTransmission type=int, initial=16384 | 271 maxBeaconTransmission type=int, initial=16384 |
275 | 272 |
OLD | NEW |