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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSProperties.in

Issue 2597083002: Moved list-style-type to be generated in ComputedStyleBase (Closed)
Patch Set: Created 3 years, 12 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 // This file specifies all the CSS properties we support and the necessary 1 // This file specifies all the CSS properties we support and the necessary
2 // information for our code generation. The various supported arguments 2 // information for our code generation. The various supported arguments
3 // are described below with example usage 3 // are described below with example usage
4 4
5 5
6 // - alias_for=other-property 6 // - alias_for=other-property
7 // Properties specifying alias_for should be virtually identical to the 7 // Properties specifying alias_for should be virtually identical to the
8 // properties they alias. Minor parsing differences are allowed as long as 8 // properties they alias. Minor parsing differences are allowed as long as
9 // the CSSValues created are of the same format of the aliased property. 9 // the CSSValues created are of the same format of the aliased property.
10 10
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 isolation 272 isolation
273 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData 273 justify-content initial=initialContentAlignment, converter=convertContentAlignme ntData
274 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData 274 justify-items runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converte r=convertSelfOrDefaultAlignmentData
275 justify-self runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converter =convertSelfOrDefaultAlignmentData 275 justify-self runtime_flag=CSSGridLayout, initial=initialSelfAlignment, converter =convertSelfOrDefaultAlignmentData
276 left typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto 276 left typedom_types=[Length], keywords=[auto], supports_percentage, interpolable, initial=initialOffset, converter=convertLengthOrAuto
277 letter-spacing interpolable, inherited, initial=initialLetterWordSpacing, conver ter=convertSpacing 277 letter-spacing interpolable, inherited, initial=initialLetterWordSpacing, conver ter=convertSpacing
278 lighting-color interpolable, svg, converter=convertColor 278 lighting-color interpolable, svg, converter=convertColor
279 line-height interpolable, inherited, getter=specifiedLineHeight, converter=conve rtLineHeight 279 line-height interpolable, inherited, getter=specifiedLineHeight, converter=conve rtLineHeight
280 list-style-image interpolable, inherited, custom_value, typedom_types=[Image] 280 list-style-image interpolable, inherited, custom_value, typedom_types=[Image]
281 list-style-position inherited, independent, keyword_only, keywords=[outside|insi de], initial_keyword=outside 281 list-style-position inherited, independent, keyword_only, keywords=[outside|insi de], initial_keyword=outside
282 list-style-type inherited 282 list-style-type inherited, keyword_only, keywords=[disc|circle|square|decimal|de cimal-leading-zero|arabic-indic|bengali|cambodian|khmer|devanagari|gujarati|gurm ukhi|kannada|lao|malayalam|mongolian|myanmar|oriya|persian|urdu|telugu|tibetan|t hai|lower-roman|upper-roman|lower-greek|lower-alpha|lower-latin|upper-alpha|uppe r-latin|cjk-earthly-branch|cjk-heavenly-stem|ethiopic-halehame|ethiopic-halehame -am|ethiopic-halehame-ti-er|ethiopic-halehame-ti-et|hangul|hangul-consonant|kore an-hangul-formal|korean-hanja-formal|korean-hanja-informal|hebrew|armenian|lower -armenian|upper-armenian|georgian|cjk-ideographic|simp-chinese-formal|simp-chine se-informal|trad-chinese-formal|trad-chinese-informal|hiragana|katakana|hiragana -iroha|katakana-iroha|none], initial_keyword=disc
283 margin-bottom interpolable, initial=initialMargin, converter=convertQuirkyLength 283 margin-bottom interpolable, initial=initialMargin, converter=convertQuirkyLength
284 margin-left interpolable, initial=initialMargin, converter=convertQuirkyLength 284 margin-left interpolable, initial=initialMargin, converter=convertQuirkyLength
285 margin-right interpolable, initial=initialMargin, converter=convertQuirkyLength 285 margin-right interpolable, initial=initialMargin, converter=convertQuirkyLength
286 margin-top interpolable, initial=initialMargin, converter=convertQuirkyLength 286 margin-top interpolable, initial=initialMargin, converter=convertQuirkyLength
287 marker-end inherited, svg, name_for_methods=MarkerEndResource, converter=convert FragmentIdentifier 287 marker-end inherited, svg, name_for_methods=MarkerEndResource, converter=convert FragmentIdentifier
288 marker-mid inherited, svg, name_for_methods=MarkerMidResource, converter=convert FragmentIdentifier 288 marker-mid inherited, svg, name_for_methods=MarkerMidResource, converter=convert FragmentIdentifier
289 marker-start inherited, svg, name_for_methods=MarkerStartResource, converter=con vertFragmentIdentifier 289 marker-start inherited, svg, name_for_methods=MarkerStartResource, converter=con vertFragmentIdentifier
290 mask svg, name_for_methods=MaskerResource, converter=convertFragmentIdentifier 290 mask svg, name_for_methods=MaskerResource, converter=convertFragmentIdentifier
291 mask-source-type runtime_flag=CSSMaskSourceType, custom_all 291 mask-source-type runtime_flag=CSSMaskSourceType, custom_all
292 mask-type svg 292 mask-type svg
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 -webkit-text-size-adjust alias_for=text-size-adjust 631 -webkit-text-size-adjust alias_for=text-size-adjust
632 -webkit-transform alias_for=transform 632 -webkit-transform alias_for=transform
633 -webkit-transform-origin alias_for=transform-origin 633 -webkit-transform-origin alias_for=transform-origin
634 -webkit-transform-style alias_for=transform-style 634 -webkit-transform-style alias_for=transform-style
635 -webkit-transition alias_for=transition 635 -webkit-transition alias_for=transition
636 -webkit-transition-delay alias_for=transition-delay 636 -webkit-transition-delay alias_for=transition-delay
637 -webkit-transition-duration alias_for=transition-duration 637 -webkit-transition-duration alias_for=transition-duration
638 -webkit-transition-property alias_for=transition-property 638 -webkit-transition-property alias_for=transition-property
639 -webkit-transition-timing-function alias_for=transition-timing-function 639 -webkit-transition-timing-function alias_for=transition-timing-function
640 -webkit-user-select alias_for=user-select 640 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698