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

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

Issue 1574933002: Changed type of border-width longhands from unsigned to float. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made transitions use fractional border widths, added assert that border widths are positive, and r… Created 4 years, 11 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 background-position-x interpolable, custom_all 125 background-position-x interpolable, custom_all
126 background-position-y interpolable, custom_all 126 background-position-y interpolable, custom_all
127 background-repeat-x custom_all 127 background-repeat-x custom_all
128 background-repeat-y custom_all 128 background-repeat-y custom_all
129 background-size interpolable, custom_all 129 background-size interpolable, custom_all
130 baseline-shift interpolable, svg, custom_inherit, custom_value 130 baseline-shift interpolable, svg, custom_inherit, custom_value
131 border-bottom-color interpolable, custom_all 131 border-bottom-color interpolable, custom_all
132 border-bottom-left-radius interpolable, initial=initialBorderRadius, converter=c onvertRadius 132 border-bottom-left-radius interpolable, initial=initialBorderRadius, converter=c onvertRadius
133 border-bottom-right-radius interpolable, initial=initialBorderRadius, converter= convertRadius 133 border-bottom-right-radius interpolable, initial=initialBorderRadius, converter= convertRadius
134 border-bottom-style type_name=EBorderStyle, initial=initialBorderStyle 134 border-bottom-style type_name=EBorderStyle, initial=initialBorderStyle
135 border-bottom-width interpolable, initial=initialBorderWidth, converter=convertL ineWidth<unsigned> 135 border-bottom-width interpolable, initial=initialBorderWidth, converter=convertL ineWidth<float>
136 border-collapse inherited 136 border-collapse inherited
137 border-image-outset interpolable, custom_all 137 border-image-outset interpolable, custom_all
138 border-image-repeat custom_all 138 border-image-repeat custom_all
139 border-image-slice interpolable, custom_all 139 border-image-slice interpolable, custom_all
140 border-image-source interpolable, custom_value 140 border-image-source interpolable, custom_value
141 border-image-width interpolable, custom_all 141 border-image-width interpolable, custom_all
142 border-left-color interpolable, custom_all 142 border-left-color interpolable, custom_all
143 border-left-style type_name=EBorderStyle, initial=initialBorderStyle 143 border-left-style type_name=EBorderStyle, initial=initialBorderStyle
144 border-left-width interpolable, initial=initialBorderWidth, converter=convertLin eWidth<unsigned> 144 border-left-width interpolable, initial=initialBorderWidth, converter=convertLin eWidth<float>
145 border-right-color interpolable, custom_all 145 border-right-color interpolable, custom_all
146 border-right-style type_name=EBorderStyle, initial=initialBorderStyle 146 border-right-style type_name=EBorderStyle, initial=initialBorderStyle
147 border-right-width interpolable, initial=initialBorderWidth, converter=convertLi neWidth<unsigned> 147 border-right-width interpolable, initial=initialBorderWidth, converter=convertLi neWidth<float>
148 border-top-color interpolable, custom_all 148 border-top-color interpolable, custom_all
149 border-top-left-radius interpolable, initial=initialBorderRadius, converter=conv ertRadius 149 border-top-left-radius interpolable, initial=initialBorderRadius, converter=conv ertRadius
150 border-top-right-radius interpolable, initial=initialBorderRadius, converter=con vertRadius 150 border-top-right-radius interpolable, initial=initialBorderRadius, converter=con vertRadius
151 border-top-style type_name=EBorderStyle, initial=initialBorderStyle 151 border-top-style type_name=EBorderStyle, initial=initialBorderStyle
152 border-top-width interpolable, initial=initialBorderWidth, converter=convertLine Width<unsigned> 152 border-top-width interpolable, initial=initialBorderWidth, converter=convertLine Width<float>
alancutter (OOO until 2018) 2016/01/20 06:06:24 We should modify convertLineWidth() to clamp to a
153 bottom interpolable, initial=initialOffset, converter=convertLengthOrAuto 153 bottom interpolable, initial=initialOffset, converter=convertLengthOrAuto
154 box-shadow interpolable, converter=convertShadow 154 box-shadow interpolable, converter=convertShadow
155 box-sizing 155 box-sizing
156 buffered-rendering svg 156 buffered-rendering svg
157 caption-side inherited 157 caption-side inherited
158 clear 158 clear
159 clip interpolable, converter=convertClip, custom_all 159 clip interpolable, converter=convertClip, custom_all
160 clip-path svg, name_for_methods=ClipperResource, converter=convertFragmentIdenti fier 160 clip-path svg, name_for_methods=ClipperResource, converter=convertFragmentIdenti fier
161 clip-rule inherited, svg, type_name=WindRule 161 clip-rule inherited, svg, type_name=WindRule
162 color-interpolation inherited, svg 162 color-interpolation inherited, svg
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 -webkit-shape-margin alias_for=shape-margin 542 -webkit-shape-margin alias_for=shape-margin
543 -webkit-shape-outside alias_for=shape-outside 543 -webkit-shape-outside alias_for=shape-outside
544 -webkit-transform alias_for=transform 544 -webkit-transform alias_for=transform
545 -webkit-transform-origin alias_for=transform-origin 545 -webkit-transform-origin alias_for=transform-origin
546 -webkit-transform-style alias_for=transform-style 546 -webkit-transform-style alias_for=transform-style
547 -webkit-transition alias_for=transition 547 -webkit-transition alias_for=transition
548 -webkit-transition-delay alias_for=transition-delay 548 -webkit-transition-delay alias_for=transition-delay
549 -webkit-transition-duration alias_for=transition-duration 549 -webkit-transition-duration alias_for=transition-duration
550 -webkit-transition-property alias_for=transition-property 550 -webkit-transition-property alias_for=transition-property
551 -webkit-transition-timing-function alias_for=transition-timing-function 551 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698