| OLD | NEW |
| 1 // This file specifies all the CSS properties we support and the necessary | 1 // This file specifies all the CSS properties we support and the necessary |
| 2 // information for our code generation. The various supported arguments | 2 // information for our code generation. The various supported arguments |
| 3 // are described below with example usage | 3 // are described below with example usage |
| 4 | 4 |
| 5 | 5 |
| 6 // - alias_for=other-property | 6 // - alias_for=other-property |
| 7 // Properties specifying alias_for do not get their own enum and instead map | 7 // Properties specifying alias_for do not get their own enum and instead map |
| 8 // directly onto the CSSPropertyID they alias. Currently this means that the | 8 // directly onto the CSSPropertyID they alias. Currently this means that the |
| 9 // UseCounter will not pick up on these (crbug.com/304855) | |
| 10 | 9 |
| 11 | 10 |
| 12 // - runtime_flag=CSSFooProperty | 11 // - runtime_flag=CSSFooProperty |
| 13 // The flag on RuntimeEnabledFeatures conditionally enables the property | 12 // The flag on RuntimeEnabledFeatures conditionally enables the property |
| 14 | 13 |
| 15 | 14 |
| 16 // - longhands=property;other-property | 15 // - longhands=property;other-property |
| 17 // The property is a shorthand for several other properties. | 16 // The property is a shorthand for several other properties. |
| 18 | 17 |
| 19 | 18 |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 -webkit-flex alias_for=flex | 383 -webkit-flex alias_for=flex |
| 385 -webkit-flex-basis alias_for=flex-basis | 384 -webkit-flex-basis alias_for=flex-basis |
| 386 -webkit-flex-direction alias_for=flex-direction | 385 -webkit-flex-direction alias_for=flex-direction |
| 387 -webkit-flex-flow alias_for=flex-flow | 386 -webkit-flex-flow alias_for=flex-flow |
| 388 -webkit-flex-grow alias_for=flex-grow | 387 -webkit-flex-grow alias_for=flex-grow |
| 389 -webkit-flex-shrink alias_for=flex-shrink | 388 -webkit-flex-shrink alias_for=flex-shrink |
| 390 -webkit-flex-wrap alias_for=flex-wrap | 389 -webkit-flex-wrap alias_for=flex-wrap |
| 391 -webkit-justify-content alias_for=justify-content | 390 -webkit-justify-content alias_for=justify-content |
| 392 -webkit-opacity alias_for=opacity | 391 -webkit-opacity alias_for=opacity |
| 393 -webkit-order alias_for=order | 392 -webkit-order alias_for=order |
| OLD | NEW |