Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSProperties.json5

Issue 2899643002: Generate enum/getters/setters/mappings for overflow-wrap. (Closed)
Patch Set: Rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after
1629 inherited: false, 1629 inherited: false,
1630 default_value: "auto", 1630 default_value: "auto",
1631 field_template: "keyword", 1631 field_template: "keyword",
1632 keywords: [ 1632 keywords: [
1633 "visible", "none", "auto", 1633 "visible", "none", "auto",
1634 ], 1634 ],
1635 }, 1635 },
1636 { 1636 {
1637 name: "overflow-wrap", 1637 name: "overflow-wrap",
1638 inherited: true, 1638 inherited: true,
1639 field_template: "storage_only", 1639 field_template: "keyword",
1640 type_name: "EOverflowWrap", 1640 keywords: ["normal", "break-word"],
1641 default_value: "EOverflowWrap::kNormal", 1641 default_value: "normal",
1642 field_size: 1, 1642 field_size: 1,
1643 field_group: "rare-inherited", 1643 field_group: "rare-inherited",
1644 }, 1644 },
1645 { 1645 {
1646 name: "overflow-x", 1646 name: "overflow-x",
1647 default_value: "visible", 1647 default_value: "visible",
1648 field_template: "keyword", 1648 field_template: "keyword",
1649 keywords: [ 1649 keywords: [
1650 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w ebkit-paged-y", 1650 "visible", "hidden", "scroll", "auto", "overlay", "-webkit-paged-x", "-w ebkit-paged-y",
1651 ], 1651 ],
(...skipping 1840 matching lines...) Expand 10 before | Expand all | Expand 10 after
3492 { 3492 {
3493 name: "-webkit-transition-timing-function", 3493 name: "-webkit-transition-timing-function",
3494 alias_for: "transition-timing-function", 3494 alias_for: "transition-timing-function",
3495 }, 3495 },
3496 { 3496 {
3497 name: "-webkit-user-select", 3497 name: "-webkit-user-select",
3498 alias_for: "user-select", 3498 alias_for: "user-select",
3499 }, 3499 },
3500 ], 3500 ],
3501 } 3501 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698