| 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 2395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2406 converter: "ConvertComputedLength<float>", | 2406 converter: "ConvertComputedLength<float>", |
| 2407 custom_all: true, | 2407 custom_all: true, |
| 2408 interpolable: true, | 2408 interpolable: true, |
| 2409 }, | 2409 }, |
| 2410 { | 2410 { |
| 2411 name: "-webkit-highlight", | 2411 name: "-webkit-highlight", |
| 2412 api_class: true, | 2412 api_class: true, |
| 2413 api_methods: ["parseSingleValue"], | 2413 api_methods: ["parseSingleValue"], |
| 2414 converter: "ConvertString<CSSValueNone>", | 2414 converter: "ConvertString<CSSValueNone>", |
| 2415 inherited: true, | 2415 inherited: true, |
| 2416 field_template: "storage_only", | 2416 field_template: "external", |
| 2417 type_name: "AtomicString", | 2417 type_name: "AtomicString", |
| 2418 include_paths: ["platform/wtf/text/AtomicString.h"], | 2418 include_paths: ["platform/wtf/text/AtomicString.h"], |
| 2419 default_value: "g_null_atom", | 2419 default_value: "g_null_atom", |
| 2420 field_group: "rare-inherited", | 2420 field_group: "rare-inherited", |
| 2421 }, | 2421 }, |
| 2422 { | 2422 { |
| 2423 name: "-webkit-hyphenate-character", | 2423 name: "-webkit-hyphenate-character", |
| 2424 converter: "ConvertString<CSSValueAuto>", | 2424 converter: "ConvertString<CSSValueAuto>", |
| 2425 inherited: true, | 2425 inherited: true, |
| 2426 name_for_methods: "HyphenationString", | 2426 name_for_methods: "HyphenationString", |
| (...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3523 { | 3523 { |
| 3524 name: "-webkit-transition-timing-function", | 3524 name: "-webkit-transition-timing-function", |
| 3525 alias_for: "transition-timing-function", | 3525 alias_for: "transition-timing-function", |
| 3526 }, | 3526 }, |
| 3527 { | 3527 { |
| 3528 name: "-webkit-user-select", | 3528 name: "-webkit-user-select", |
| 3529 alias_for: "user-select", | 3529 alias_for: "user-select", |
| 3530 }, | 3530 }, |
| 3531 ], | 3531 ], |
| 3532 } | 3532 } |
| OLD | NEW |