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

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

Issue 2546333002: Changed Order to an enum class and renamed its members (Closed)
Patch Set: Created 4 years 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 -webkit-mask-image interpolable, custom_all 416 -webkit-mask-image interpolable, custom_all
417 -webkit-mask-origin custom_all 417 -webkit-mask-origin custom_all
418 -webkit-mask-position-x interpolable, custom_all 418 -webkit-mask-position-x interpolable, custom_all
419 -webkit-mask-position-y interpolable, custom_all 419 -webkit-mask-position-y interpolable, custom_all
420 -webkit-mask-repeat-x custom_all 420 -webkit-mask-repeat-x custom_all
421 -webkit-mask-repeat-y custom_all 421 -webkit-mask-repeat-y custom_all
422 -webkit-mask-size interpolable, custom_all 422 -webkit-mask-size interpolable, custom_all
423 -webkit-perspective-origin-x interpolable, converter=convertLength 423 -webkit-perspective-origin-x interpolable, converter=convertLength
424 -webkit-perspective-origin-y interpolable, converter=convertLength 424 -webkit-perspective-origin-y interpolable, converter=convertLength
425 -webkit-print-color-adjust inherited, type_name=PrintColorAdjust 425 -webkit-print-color-adjust inherited, type_name=PrintColorAdjust
426 -webkit-rtl-ordering inherited, type_name=Order, setter=setRTLOrdering, initial= initialRTLOrdering 426 -webkit-rtl-ordering inherited, type_name=EOrder, setter=setRTLOrdering, initial =initialRTLOrdering
427 -webkit-ruby-position inherited, type_name=RubyPosition 427 -webkit-ruby-position inherited, type_name=RubyPosition
428 -webkit-tap-highlight-color inherited, converter=convertColor 428 -webkit-tap-highlight-color inherited, converter=convertColor
429 -webkit-text-combine inherited, type_name=TextCombine, name_for_methods=TextComb ine 429 -webkit-text-combine inherited, type_name=TextCombine, name_for_methods=TextComb ine
430 -webkit-text-emphasis-color inherited, custom_all 430 -webkit-text-emphasis-color inherited, custom_all
431 -webkit-text-emphasis-position inherited, type_name=TextEmphasisPosition 431 -webkit-text-emphasis-position inherited, type_name=TextEmphasisPosition
432 -webkit-text-emphasis-style inherited, custom_all 432 -webkit-text-emphasis-style inherited, custom_all
433 -webkit-text-fill-color inherited, custom_all 433 -webkit-text-fill-color inherited, custom_all
434 -webkit-text-security inherited 434 -webkit-text-security inherited
435 -webkit-text-stroke-color interpolable, inherited, custom_all 435 -webkit-text-stroke-color interpolable, inherited, custom_all
436 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth 436 -webkit-text-stroke-width inherited, converter=convertTextStrokeWidth
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 -webkit-text-size-adjust alias_for=text-size-adjust 617 -webkit-text-size-adjust alias_for=text-size-adjust
618 -webkit-transform alias_for=transform 618 -webkit-transform alias_for=transform
619 -webkit-transform-origin alias_for=transform-origin 619 -webkit-transform-origin alias_for=transform-origin
620 -webkit-transform-style alias_for=transform-style 620 -webkit-transform-style alias_for=transform-style
621 -webkit-transition alias_for=transition 621 -webkit-transition alias_for=transition
622 -webkit-transition-delay alias_for=transition-delay 622 -webkit-transition-delay alias_for=transition-delay
623 -webkit-transition-duration alias_for=transition-duration 623 -webkit-transition-duration alias_for=transition-duration
624 -webkit-transition-property alias_for=transition-property 624 -webkit-transition-property alias_for=transition-property
625 -webkit-transition-timing-function alias_for=transition-timing-function 625 -webkit-transition-timing-function alias_for=transition-timing-function
626 -webkit-user-select alias_for=user-select 626 -webkit-user-select alias_for=user-select
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698