| 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 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1385 keywords: [ | 1385 keywords: [ |
| 1386 "visible", "none", "auto", | 1386 "visible", "none", "auto", |
| 1387 ], | 1387 ], |
| 1388 }, | 1388 }, |
| 1389 { | 1389 { |
| 1390 name: "overflow-wrap", | 1390 name: "overflow-wrap", |
| 1391 inherited: true, | 1391 inherited: true, |
| 1392 }, | 1392 }, |
| 1393 { | 1393 { |
| 1394 name: "overflow-x", | 1394 name: "overflow-x", |
| 1395 initial_keyword: "visible", |
| 1396 keyword_only: true, |
| 1397 keywords: [ |
| 1398 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w
ebkit-paged-y", |
| 1399 ], |
| 1395 type_name: "EOverflow", | 1400 type_name: "EOverflow", |
| 1396 }, | 1401 }, |
| 1397 { | 1402 { |
| 1398 name: "overflow-y", | 1403 name: "overflow-y", |
| 1404 initial_keyword: "visible", |
| 1405 keyword_only: true, |
| 1406 keywords: [ |
| 1407 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w
ebkit-paged-y", |
| 1408 ], |
| 1399 type_name: "EOverflow", | 1409 type_name: "EOverflow", |
| 1400 }, | 1410 }, |
| 1401 { | 1411 { |
| 1402 name: "padding-bottom", | 1412 name: "padding-bottom", |
| 1403 api_class: "CSSPropertyAPIPadding", | 1413 api_class: "CSSPropertyAPIPadding", |
| 1404 api_methods: ["parseSingleValue"], | 1414 api_methods: ["parseSingleValue"], |
| 1405 converter: "convertLength", | 1415 converter: "convertLength", |
| 1406 initial: "initialPadding", | 1416 initial: "initialPadding", |
| 1407 interpolable: true, | 1417 interpolable: true, |
| 1408 }, | 1418 }, |
| (...skipping 1631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3040 { | 3050 { |
| 3041 name: "-webkit-transition-timing-function", | 3051 name: "-webkit-transition-timing-function", |
| 3042 alias_for: "transition-timing-function", | 3052 alias_for: "transition-timing-function", |
| 3043 }, | 3053 }, |
| 3044 { | 3054 { |
| 3045 name: "-webkit-user-select", | 3055 name: "-webkit-user-select", |
| 3046 alias_for: "user-select", | 3056 alias_for: "user-select", |
| 3047 }, | 3057 }, |
| 3048 ], | 3058 ], |
| 3049 } | 3059 } |
| OLD | NEW |