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

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

Issue 2145823002: Implement the overflow-anchor CSS property as an opt-out for ScrollAnchoring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename anchorScroll Created 4 years, 5 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 motion-rotation interpolable, converter=convertMotionRotation 254 motion-rotation interpolable, converter=convertMotionRotation
255 object-fit type_name=ObjectFit 255 object-fit type_name=ObjectFit
256 object-position interpolable, converter=convertPosition 256 object-position interpolable, converter=convertPosition
257 opacity interpolable, type_name=float 257 opacity interpolable, type_name=float
258 order type_name=int 258 order type_name=int
259 orphans interpolable, inherited, type_name=short 259 orphans interpolable, inherited, type_name=short
260 outline-color interpolable, custom_all 260 outline-color interpolable, custom_all
261 outline-offset interpolable, converter=convertComputedLength<int> 261 outline-offset interpolable, converter=convertComputedLength<int>
262 outline-style custom_all 262 outline-style custom_all
263 outline-width interpolable, converter=convertLineWidth<unsigned short> 263 outline-width interpolable, converter=convertLineWidth<unsigned short>
264 overflow-anchor type_name=EOverflowAnchor
jbroman 2016/07/13 20:53:05 Should this be guarded by RuntimeEnabledFeatures (
ymalik 2016/07/13 21:41:44 Yes totally. And also because we haven't shipped s
264 overflow-wrap inherited 265 overflow-wrap inherited
265 overflow-x type_name=EOverflow 266 overflow-x type_name=EOverflow
266 overflow-y type_name=EOverflow 267 overflow-y type_name=EOverflow
267 padding-bottom interpolable, initial=initialPadding, converter=convertLength 268 padding-bottom interpolable, initial=initialPadding, converter=convertLength
268 padding-left interpolable, initial=initialPadding, converter=convertLength 269 padding-left interpolable, initial=initialPadding, converter=convertLength
269 padding-right interpolable, initial=initialPadding, converter=convertLength 270 padding-right interpolable, initial=initialPadding, converter=convertLength
270 padding-top interpolable, initial=initialPadding, converter=convertLength 271 padding-top interpolable, initial=initialPadding, converter=convertLength
271 paint-order inherited, svg, converter=convertPaintOrder 272 paint-order inherited, svg, converter=convertPaintOrder
272 perspective interpolable, converter=convertPerspective 273 perspective interpolable, converter=convertPerspective
273 perspective-origin interpolable, converter=convertPosition 274 perspective-origin interpolable, converter=convertPosition
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 -webkit-shape-outside alias_for=shape-outside 580 -webkit-shape-outside alias_for=shape-outside
580 -webkit-text-size-adjust alias_for=text-size-adjust 581 -webkit-text-size-adjust alias_for=text-size-adjust
581 -webkit-transform alias_for=transform 582 -webkit-transform alias_for=transform
582 -webkit-transform-origin alias_for=transform-origin 583 -webkit-transform-origin alias_for=transform-origin
583 -webkit-transform-style alias_for=transform-style 584 -webkit-transform-style alias_for=transform-style
584 -webkit-transition alias_for=transition 585 -webkit-transition alias_for=transition
585 -webkit-transition-delay alias_for=transition-delay 586 -webkit-transition-delay alias_for=transition-delay
586 -webkit-transition-duration alias_for=transition-duration 587 -webkit-transition-duration alias_for=transition-duration
587 -webkit-transition-property alias_for=transition-property 588 -webkit-transition-property alias_for=transition-property
588 -webkit-transition-timing-function alias_for=transition-timing-function 589 -webkit-transition-timing-function alias_for=transition-timing-function
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698