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

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

Issue 2618523003: Implements CSSPropertyAPI for the page property. (Closed)
Patch Set: fixed dependencies, changed year Created 3 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 -webkit-logical-height direction_aware 490 -webkit-logical-height direction_aware
491 -webkit-min-logical-width direction_aware 491 -webkit-min-logical-width direction_aware
492 -webkit-min-logical-height direction_aware 492 -webkit-min-logical-height direction_aware
493 -webkit-max-logical-width direction_aware 493 -webkit-max-logical-width direction_aware
494 -webkit-max-logical-height direction_aware 494 -webkit-max-logical-height direction_aware
495 495
496 // Properties that we ignore in the StyleBuilder. 496 // Properties that we ignore in the StyleBuilder.
497 // TODO(timloh): This seems wrong, most of these shouldn't reach the StyleBuilde r 497 // TODO(timloh): This seems wrong, most of these shouldn't reach the StyleBuilde r
498 498
499 all builder_skip 499 all builder_skip
500 page builder_skip 500 page builder_skip, api_class
501 -webkit-font-size-delta builder_skip 501 -webkit-font-size-delta builder_skip
502 -webkit-text-decorations-in-effect inherited, builder_skip 502 -webkit-text-decorations-in-effect inherited, builder_skip
503 503
504 // Descriptors 504 // Descriptors
505 505
506 font-display descriptor_only, runtime_flag=CSSFontDisplay 506 font-display descriptor_only, runtime_flag=CSSFontDisplay
507 max-zoom descriptor_only 507 max-zoom descriptor_only
508 min-zoom descriptor_only 508 min-zoom descriptor_only
509 orientation descriptor_only 509 orientation descriptor_only
510 src descriptor_only 510 src descriptor_only
(...skipping 120 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