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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 editingBehaviorType type=EditingBehaviorType, initial=editingBehaviorTypeForPlat
form() | 63 editingBehaviorType type=EditingBehaviorType, initial=editingBehaviorTypeForPlat
form() |
64 | 64 |
65 caretBrowsingEnabled initial=false | 65 caretBrowsingEnabled initial=false |
66 localStorageEnabled initial=false | 66 localStorageEnabled initial=false |
67 allowUniversalAccessFromFileURLs initial=true | 67 allowUniversalAccessFromFileURLs initial=true |
68 allowFileAccessFromFileURLs initial=true | 68 allowFileAccessFromFileURLs initial=true |
69 javaScriptCanOpenWindowsAutomatically initial=false | 69 javaScriptCanOpenWindowsAutomatically initial=false |
70 supportsMultipleWindows initial=true | 70 supportsMultipleWindows initial=true |
71 javaScriptCanAccessClipboard initial=false | 71 javaScriptCanAccessClipboard initial=false |
72 shouldPrintBackgrounds initial=false | 72 shouldPrintBackgrounds initial=false |
73 shouldClearDocumentBackground initial=true | |
74 | 73 |
75 textAreasAreResizable initial=false, setNeedsStyleRecalcInAllFrames=1 | 74 textAreasAreResizable initial=false, setNeedsStyleRecalcInAllFrames=1 |
76 acceleratedCompositingEnabled initial=true, setNeedsStyleRecalcInAllFrames=1 | 75 acceleratedCompositingEnabled initial=true, setNeedsStyleRecalcInAllFrames=1 |
77 | 76 |
78 # Debugging feature used for accelerated compositing layers. | 77 # Debugging feature used for accelerated compositing layers. |
79 showRepaintCounter initial=false, setNeedsStyleRecalcInAllFrames=1 | 78 showRepaintCounter initial=false, setNeedsStyleRecalcInAllFrames=1 |
80 | 79 |
81 shrinksStandaloneImagesToFit initial=true | 80 shrinksStandaloneImagesToFit initial=true |
82 | 81 |
83 # FIXME: Does this do anything now that we don't support page cache? | 82 # FIXME: Does this do anything now that we don't support page cache? |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 # behaves. TODO(wjmaclean): link to design document. | 242 # behaves. TODO(wjmaclean): link to design document. |
244 # crbug.com/304869 tracks removal. | 243 # crbug.com/304869 tracks removal. |
245 pinchVirtualViewportEnabled initial=false | 244 pinchVirtualViewportEnabled initial=false |
246 useSolidColorScrollbars initial=false | 245 useSolidColorScrollbars initial=false |
247 | 246 |
248 mainFrameClipsContent initial=true | 247 mainFrameClipsContent initial=true |
249 | 248 |
250 # Enable decoration shadow nodes to test password genration feature | 249 # Enable decoration shadow nodes to test password genration feature |
251 # crbug.com/114092. This flag should not be enabled for production. | 250 # crbug.com/114092. This flag should not be enabled for production. |
252 passwordGenerationDecorationEnabled initial=false | 251 passwordGenerationDecorationEnabled initial=false |
OLD | NEW |