Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1317)

Side by Side Diff: Source/core/frame/Settings.in

Issue 988023005: Implementing directional selection strategy in Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressing feedback. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 unifiedTextCheckerEnabled initial=defaultUnifiedTextCheckerEnabled 167 unifiedTextCheckerEnabled initial=defaultUnifiedTextCheckerEnabled
168 168
169 # Some apps could have a default video poster if it is not set. 169 # Some apps could have a default video poster if it is not set.
170 defaultVideoPosterURL type=String 170 defaultVideoPosterURL type=String
171 171
172 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled 172 smartInsertDeleteEnabled initial=defaultSmartInsertDeleteEnabled
173 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled 173 selectTrailingWhitespaceEnabled initial=defaultSelectTrailingWhitespaceEnabled
174 174
175 selectionIncludesAltImageText initial=false 175 selectionIncludesAltImageText initial=false
176 176
177 selectionStrategy type=SelectionStrategy, initial=StrategyDefault
178
177 ######## Settings used by Android WebView below ######## 179 ######## Settings used by Android WebView below ########
178 180
179 useLegacyBackgroundSizeShorthandBehavior initial=false 181 useLegacyBackgroundSizeShorthandBehavior initial=false
180 182
181 # This quirk is to maintain compatibility with Android apps built on 183 # This quirk is to maintain compatibility with Android apps built on
182 # the Android SDK prior to and including version 18. 184 # the Android SDK prior to and including version 18.
183 # Presumably, this can be removed any time after 2015. 185 # Presumably, this can be removed any time after 2015.
184 # See http://crbug.com/282130. 186 # See http://crbug.com/282130.
185 viewportMetaZeroValuesQuirk initial=false 187 viewportMetaZeroValuesQuirk initial=false
186 188
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 useMobileViewportStyle initial=false, invalidate=ViewportRule 324 useMobileViewportStyle initial=false, invalidate=ViewportRule
323 325
324 # User style overrides for captions and subtitles 326 # User style overrides for captions and subtitles
325 textTrackBackgroundColor type=String 327 textTrackBackgroundColor type=String
326 textTrackFontFamily type=String 328 textTrackFontFamily type=String
327 textTrackFontStyle type=String 329 textTrackFontStyle type=String
328 textTrackFontVariant type=String 330 textTrackFontVariant type=String
329 textTrackTextColor type=String 331 textTrackTextColor type=String
330 textTrackTextShadow type=String 332 textTrackTextShadow type=String
331 textTrackTextSize type=String 333 textTrackTextSize type=String
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698