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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 # If true, the value in password fields is exposed to assistive technologies. | 327 # If true, the value in password fields is exposed to assistive technologies. |
328 accessibilityPasswordValuesEnabled initial=false | 328 accessibilityPasswordValuesEnabled initial=false |
329 | 329 |
330 # If true, static text nodes expose inline text box children. | 330 # If true, static text nodes expose inline text box children. |
331 inlineTextBoxAccessibilityEnabled initial=false | 331 inlineTextBoxAccessibilityEnabled initial=false |
332 | 332 |
333 # If true, context menu will be shown on mouse up instead of mouse down. | 333 # If true, context menu will be shown on mouse up instead of mouse down. |
334 # Typically enabled on Windows to match platform convention. | 334 # Typically enabled on Windows to match platform convention. |
335 showContextMenuOnMouseUp initial=false | 335 showContextMenuOnMouseUp initial=false |
336 | 336 |
| 337 # If true, context menu will be shown on any long press event. |
| 338 # Used on Android to prevent a context menu from being shown in certain situatio
ns |
| 339 # (i.e. long pressing an empty div) |
| 340 alwaysShowContextMenuOnTouch initial=true |
| 341 |
337 disableReadingFromCanvas initial=false | 342 disableReadingFromCanvas initial=false |
338 strictMixedContentChecking initial=false | 343 strictMixedContentChecking initial=false |
339 strictMixedContentCheckingForPlugin initial=false | 344 strictMixedContentCheckingForPlugin initial=false |
340 strictPowerfulFeatureRestrictions initial=false | 345 strictPowerfulFeatureRestrictions initial=false |
341 strictlyBlockBlockableMixedContent initial=false | 346 strictlyBlockBlockableMixedContent initial=false |
342 allowGeolocationOnInsecureOrigins initial=false | 347 allowGeolocationOnInsecureOrigins initial=false |
343 logDnsPrefetchAndPreconnect initial=false | 348 logDnsPrefetchAndPreconnect initial=false |
344 logPreload initial=false | 349 logPreload initial=false |
345 | 350 |
346 # These values specify the UA intial viewport style. | 351 # These values specify the UA intial viewport style. |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 # If set to a positive value, emit a console warning once for each non-passive | 412 # If set to a positive value, emit a console warning once for each non-passive |
408 # event listener that caused an event to be dispatched to main thread and | 413 # event listener that caused an event to be dispatched to main thread and |
409 # delayed by more than the specified time (in seconds). | 414 # delayed by more than the specified time (in seconds). |
410 blockedMainThreadEventsWarningThreshold type=double, initial=0 | 415 blockedMainThreadEventsWarningThreshold type=double, initial=0 |
411 | 416 |
412 # Ability to override the default 'passive' value in AddEventListenerOptions. Th
is | 417 # Ability to override the default 'passive' value in AddEventListenerOptions. Th
is |
413 # is useful to demonstrate the power of passive event listeners. This can be rem
oved | 418 # is useful to demonstrate the power of passive event listeners. This can be rem
oved |
414 # when there is greater adoption, interventions to force it on and associated de
vtools | 419 # when there is greater adoption, interventions to force it on and associated de
vtools |
415 # to enable it have been shipped. | 420 # to enable it have been shipped. |
416 passiveListenerDefault type=PassiveListenerDefault, initial=PassiveListenerDefau
lt::False | 421 passiveListenerDefault type=PassiveListenerDefault, initial=PassiveListenerDefau
lt::False |
OLD | NEW |