| 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 should be virtually identical to the | 7 // Properties specifying alias_for should be virtually identical to the |
| 8 // properties they alias. Minor parsing differences are allowed as long as | 8 // properties they alias. Minor parsing differences are allowed as long as |
| 9 // the CSSValues created are of the same format of the aliased property. | 9 // the CSSValues created are of the same format of the aliased property. |
| 10 | 10 |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 -webkit-logical-height direction_aware | 422 -webkit-logical-height direction_aware |
| 423 -webkit-min-logical-width direction_aware | 423 -webkit-min-logical-width direction_aware |
| 424 -webkit-min-logical-height direction_aware | 424 -webkit-min-logical-height direction_aware |
| 425 -webkit-max-logical-width direction_aware | 425 -webkit-max-logical-width direction_aware |
| 426 -webkit-max-logical-height direction_aware | 426 -webkit-max-logical-height direction_aware |
| 427 | 427 |
| 428 // Properties that we ignore in the StyleBuilder. | 428 // Properties that we ignore in the StyleBuilder. |
| 429 // TODO(timloh): This seems wrong, most of these shouldn't reach the StyleBuilde
r | 429 // TODO(timloh): This seems wrong, most of these shouldn't reach the StyleBuilde
r |
| 430 | 430 |
| 431 all builder_skip | 431 all builder_skip |
| 432 enable-background builder_skip | |
| 433 max-zoom builder_skip | 432 max-zoom builder_skip |
| 434 min-zoom builder_skip | 433 min-zoom builder_skip |
| 435 orientation builder_skip | 434 orientation builder_skip |
| 436 page builder_skip | 435 page builder_skip |
| 437 src builder_skip | 436 src builder_skip |
| 438 unicode-range builder_skip | 437 unicode-range builder_skip |
| 439 user-zoom builder_skip | 438 user-zoom builder_skip |
| 440 -webkit-font-size-delta builder_skip | 439 -webkit-font-size-delta builder_skip |
| 441 -webkit-text-decorations-in-effect inherited, builder_skip | 440 -webkit-text-decorations-in-effect inherited, builder_skip |
| 442 | 441 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 -webkit-shape-margin alias_for=shape-margin | 536 -webkit-shape-margin alias_for=shape-margin |
| 538 -webkit-shape-outside alias_for=shape-outside | 537 -webkit-shape-outside alias_for=shape-outside |
| 539 -webkit-transform alias_for=transform | 538 -webkit-transform alias_for=transform |
| 540 -webkit-transform-origin alias_for=transform-origin | 539 -webkit-transform-origin alias_for=transform-origin |
| 541 -webkit-transform-style alias_for=transform-style | 540 -webkit-transform-style alias_for=transform-style |
| 542 -webkit-transition alias_for=transition | 541 -webkit-transition alias_for=transition |
| 543 -webkit-transition-delay alias_for=transition-delay | 542 -webkit-transition-delay alias_for=transition-delay |
| 544 -webkit-transition-duration alias_for=transition-duration | 543 -webkit-transition-duration alias_for=transition-duration |
| 545 -webkit-transition-property alias_for=transition-property | 544 -webkit-transition-property alias_for=transition-property |
| 546 -webkit-transition-timing-function alias_for=transition-timing-function | 545 -webkit-transition-timing-function alias_for=transition-timing-function |
| OLD | NEW |