| 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 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1319 }, | 1319 }, |
| 1320 { | 1320 { |
| 1321 name: "offset-distance", | 1321 name: "offset-distance", |
| 1322 api_class: true, | 1322 api_class: true, |
| 1323 converter: "convertLength", | 1323 converter: "convertLength", |
| 1324 interpolable: true, | 1324 interpolable: true, |
| 1325 }, | 1325 }, |
| 1326 { | 1326 { |
| 1327 name: "offset-path", | 1327 name: "offset-path", |
| 1328 converter: "convertPathOrNone", | 1328 converter: "convertPathOrNone", |
| 1329 interpolable: true, |
| 1329 }, | 1330 }, |
| 1330 { | 1331 { |
| 1331 name: "offset-position", | 1332 name: "offset-position", |
| 1332 api_class: true, | 1333 api_class: true, |
| 1333 api_methods: ["parseSingleValue"], | 1334 api_methods: ["parseSingleValue"], |
| 1334 converter: "convertPositionOrAuto", | 1335 converter: "convertPositionOrAuto", |
| 1335 interpolable: true, | 1336 interpolable: true, |
| 1336 runtime_flag: "CSSOffsetPositionAnchor", | 1337 runtime_flag: "CSSOffsetPositionAnchor", |
| 1337 }, | 1338 }, |
| 1338 { | 1339 { |
| (...skipping 1734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3073 { | 3074 { |
| 3074 name: "-webkit-transition-timing-function", | 3075 name: "-webkit-transition-timing-function", |
| 3075 alias_for: "transition-timing-function", | 3076 alias_for: "transition-timing-function", |
| 3076 }, | 3077 }, |
| 3077 { | 3078 { |
| 3078 name: "-webkit-user-select", | 3079 name: "-webkit-user-select", |
| 3079 alias_for: "user-select", | 3080 alias_for: "user-select", |
| 3080 }, | 3081 }, |
| 3081 ], | 3082 ], |
| 3082 } | 3083 } |
| OLD | NEW |