Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1348 keywords: [ | 1348 keywords: [ |
| 1349 "visible", "none", "auto", | 1349 "visible", "none", "auto", |
| 1350 ], | 1350 ], |
| 1351 }, | 1351 }, |
| 1352 { | 1352 { |
| 1353 name: "overflow-wrap", | 1353 name: "overflow-wrap", |
| 1354 inherited: true, | 1354 inherited: true, |
| 1355 }, | 1355 }, |
| 1356 { | 1356 { |
| 1357 name: "overflow-x", | 1357 name: "overflow-x", |
| 1358 initial_keyword: "visible", | |
| 1359 keyword_only: true, | |
| 1360 keywords: [ | |
| 1361 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w ebkit-paged-y", | |
| 1362 ], | |
|
sashab
2017/02/03 05:05:23
type_name: EOverflow
| |
| 1358 type_name: "EOverflow", | 1363 type_name: "EOverflow", |
| 1359 }, | 1364 }, |
| 1360 { | 1365 { |
| 1361 name: "overflow-y", | 1366 name: "overflow-y", |
| 1367 initial_keyword: "visible", | |
| 1368 keyword_only: true, | |
| 1369 keywords: [ | |
| 1370 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w ebkit-paged-y", | |
| 1371 ], | |
|
sashab
2017/02/03 05:05:23
type_name: EOverflow
| |
| 1362 type_name: "EOverflow", | 1372 type_name: "EOverflow", |
| 1363 }, | 1373 }, |
| 1364 { | 1374 { |
| 1365 name: "padding-bottom", | 1375 name: "padding-bottom", |
| 1366 api_class: "CSSPropertyAPIPadding", | 1376 api_class: "CSSPropertyAPIPadding", |
| 1367 api_methods: ["parseSingleValue"], | 1377 api_methods: ["parseSingleValue"], |
| 1368 converter: "convertLength", | 1378 converter: "convertLength", |
| 1369 initial: "initialPadding", | 1379 initial: "initialPadding", |
| 1370 interpolable: true, | 1380 interpolable: true, |
| 1371 }, | 1381 }, |
| (...skipping 1590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2962 { | 2972 { |
| 2963 name: "-webkit-transition-timing-function", | 2973 name: "-webkit-transition-timing-function", |
| 2964 alias_for: "transition-timing-function", | 2974 alias_for: "transition-timing-function", |
| 2965 }, | 2975 }, |
| 2966 { | 2976 { |
| 2967 name: "-webkit-user-select", | 2977 name: "-webkit-user-select", |
| 2968 alias_for: "user-select", | 2978 alias_for: "user-select", |
| 2969 }, | 2979 }, |
| 2970 ], | 2980 ], |
| 2971 } | 2981 } |
| OLD | NEW |