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

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

Issue 2657073003: Moved overflow-anchor property to be generated in ComputedStyleBase. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after
1262 }, 1262 },
1263 { 1263 {
1264 name: "outline-width", 1264 name: "outline-width",
1265 api_class: true, 1265 api_class: true,
1266 converter: "convertLineWidth<unsigned short>", 1266 converter: "convertLineWidth<unsigned short>",
1267 interpolable: true, 1267 interpolable: true,
1268 }, 1268 },
1269 { 1269 {
1270 name: "overflow-anchor", 1270 name: "overflow-anchor",
1271 runtime_flag: "ScrollAnchoring", 1271 runtime_flag: "ScrollAnchoring",
1272 type_name: "EOverflowAnchor", 1272 inherited: false,
1273 initial_keyword: "auto",
1274 keyword_only: true,
1275 keywords: [
1276 "visible", "none", "auto",
1277 ],
sashab 2017/01/27 21:58:16 Ahhh these patches are so much ncer now ~^_^~ Are
1273 }, 1278 },
1274 { 1279 {
1275 name: "overflow-wrap", 1280 name: "overflow-wrap",
1276 inherited: true, 1281 inherited: true,
1277 }, 1282 },
1278 { 1283 {
1279 name: "overflow-x", 1284 name: "overflow-x",
1280 type_name: "EOverflow", 1285 type_name: "EOverflow",
1281 }, 1286 },
1282 { 1287 {
(...skipping 1521 matching lines...) Expand 10 before | Expand all | Expand 10 after
2804 { 2809 {
2805 name: "-webkit-transition-timing-function", 2810 name: "-webkit-transition-timing-function",
2806 alias_for: "transition-timing-function", 2811 alias_for: "transition-timing-function",
2807 }, 2812 },
2808 { 2813 {
2809 name: "-webkit-user-select", 2814 name: "-webkit-user-select",
2810 alias_for: "user-select", 2815 alias_for: "user-select",
2811 }, 2816 },
2812 ], 2817 ],
2813 } 2818 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/style/ComputedStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698