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

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

Issue 2877783004: Removed CSSPropertyAPIShadow group property stub (Closed)
Patch Set: Created 3 years, 7 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 { 1 {
2 // This file specifies all the CSS properties we support and the necessary 2 // This file specifies all the CSS properties we support and the necessary
3 // information for our code generation. The various supported arguments 3 // information for our code generation. The various supported arguments
4 // are described below with example usage 4 // are described below with example usage
5 5
6 parameters: { 6 parameters: {
7 // - alias_for: "other-property" 7 // - alias_for: "other-property"
8 // Properties specifying alias_for should be virtually identical to the 8 // Properties specifying alias_for should be virtually identical to the
9 // properties they alias. Minor parsing differences are allowed as long as 9 // properties they alias. Minor parsing differences are allowed as long as
10 // the CSSValues created are of the same format of the aliased property. 10 // the CSSValues created are of the same format of the aliased property.
(...skipping 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after
1955 inherited: true, 1955 inherited: true,
1956 runtime_flag: "CSS3Text", 1956 runtime_flag: "CSS3Text",
1957 type_name: "TextJustify", 1957 type_name: "TextJustify",
1958 }, 1958 },
1959 { 1959 {
1960 name: "text-overflow", 1960 name: "text-overflow",
1961 type_name: "TextOverflow", 1961 type_name: "TextOverflow",
1962 }, 1962 },
1963 { 1963 {
1964 name: "text-shadow", 1964 name: "text-shadow",
1965 api_class: "CSSPropertyAPIShadow",
1966 converter: "ConvertShadowList", 1965 converter: "ConvertShadowList",
1967 inherited: true, 1966 inherited: true,
1968 interpolable: true, 1967 interpolable: true,
1969 }, 1968 },
1970 { 1969 {
1971 name: "text-size-adjust", 1970 name: "text-size-adjust",
1972 api_class: true, 1971 api_class: true,
1973 api_methods: ["parseSingleValue"], 1972 api_methods: ["parseSingleValue"],
1974 converter: "ConvertTextSizeAdjust", 1973 converter: "ConvertTextSizeAdjust",
1975 inherited: true, 1974 inherited: true,
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after
3119 { 3118 {
3120 name: "-webkit-border-top-left-radius", 3119 name: "-webkit-border-top-left-radius",
3121 alias_for: "border-top-left-radius", 3120 alias_for: "border-top-left-radius",
3122 }, 3121 },
3123 { 3122 {
3124 name: "-webkit-border-top-right-radius", 3123 name: "-webkit-border-top-right-radius",
3125 alias_for: "border-top-right-radius", 3124 alias_for: "border-top-right-radius",
3126 }, 3125 },
3127 { 3126 {
3128 name: "-webkit-box-shadow", 3127 name: "-webkit-box-shadow",
3129 api_class: "CSSPropertyAPIShadow",
3130 alias_for: "box-shadow", 3128 alias_for: "box-shadow",
3131 }, 3129 },
3132 { 3130 {
3133 name: "-webkit-box-sizing", 3131 name: "-webkit-box-sizing",
3134 alias_for: "box-sizing", 3132 alias_for: "box-sizing",
3135 }, 3133 },
3136 { 3134 {
3137 name: "-webkit-clip-path", 3135 name: "-webkit-clip-path",
3138 alias_for: "clip-path", 3136 alias_for: "clip-path",
3139 }, 3137 },
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
3281 { 3279 {
3282 name: "-webkit-transition-timing-function", 3280 name: "-webkit-transition-timing-function",
3283 alias_for: "transition-timing-function", 3281 alias_for: "transition-timing-function",
3284 }, 3282 },
3285 { 3283 {
3286 name: "-webkit-user-select", 3284 name: "-webkit-user-select",
3287 alias_for: "user-select", 3285 alias_for: "user-select",
3288 }, 3286 },
3289 ], 3287 ],
3290 } 3288 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/BUILD.gn ('k') | third_party/WebKit/Source/core/css/properties/CSSPropertyAPIShadow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698