| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 | 85 |
| 86 # 3D canvas (WebGL) support. | 86 # 3D canvas (WebGL) support. |
| 87 webGLEnabled initial=false | 87 webGLEnabled initial=false |
| 88 | 88 |
| 89 webGLErrorsToConsoleEnabled initial=true | 89 webGLErrorsToConsoleEnabled initial=true |
| 90 antialiased2dCanvasEnabled initial=true | 90 antialiased2dCanvasEnabled initial=true |
| 91 antialiasedClips2dCanvasEnabled initial=false | 91 antialiasedClips2dCanvasEnabled initial=false |
| 92 accelerated2dCanvasMSAASampleCount type=int, initial=0 | 92 accelerated2dCanvasMSAASampleCount type=int, initial=0 |
| 93 | 93 |
| 94 hyperlinkAuditingEnabled initial=false | 94 hyperlinkAuditingEnabled initial=false |
| 95 allowDisplayOfInsecureContent initial=true | |
| 96 allowRunningOfInsecureContent initial=true | 95 allowRunningOfInsecureContent initial=true |
| 97 | 96 |
| 98 mediaControlsOverlayPlayButtonEnabled initial=false | 97 mediaControlsOverlayPlayButtonEnabled initial=false |
| 99 mediaPlaybackRequiresUserGesture initial=false | 98 mediaPlaybackRequiresUserGesture initial=false |
| 100 | 99 |
| 101 presentationRequiresUserGesture initial=true | 100 presentationRequiresUserGesture initial=true |
| 102 | 101 |
| 103 scrollAnimatorEnabled initial=true | 102 scrollAnimatorEnabled initial=true |
| 104 | 103 |
| 105 # Used to disable threaded, compositor scrolling for testing purposes. | 104 # Used to disable threaded, compositor scrolling for testing purposes. |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 useDefaultImageInterpolationQuality initial=false | 409 useDefaultImageInterpolationQuality initial=false |
| 411 | 410 |
| 412 # Variant of the ParseHTMLOnMainThread experiment. One experiment immediately | 411 # Variant of the ParseHTMLOnMainThread experiment. One experiment immediately |
| 413 # tokenizes input bytes. The default is to tokenize with a post task. | 412 # tokenizes input bytes. The default is to tokenize with a post task. |
| 414 parseHTMLOnMainThreadSyncTokenize initial=false | 413 parseHTMLOnMainThreadSyncTokenize initial=false |
| 415 # Variant of the ParseHTMLOnMainThread experiment. This is designed to coalesce | 414 # Variant of the ParseHTMLOnMainThread experiment. This is designed to coalesce |
| 416 # TokenizedChunks when the experiment is running in threaded mode. | 415 # TokenizedChunks when the experiment is running in threaded mode. |
| 417 parseHTMLOnMainThreadCoalesceChunks initial=false | 416 parseHTMLOnMainThreadCoalesceChunks initial=false |
| 418 | 417 |
| 419 browserSideNavigationEnabled initial=false | 418 browserSideNavigationEnabled initial=false |
| OLD | NEW |