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

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

Issue 2932593004: Update the snap points css properties (Closed)
Patch Set: update some tests 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 // The mode argument is used to limit the keyword to be used only for certain 2 // The mode argument is used to limit the keyword to be used only for certain
3 // CSSParserModes. Values that have the prefix -internal- are only allowed by 3 // CSSParserModes. Values that have the prefix -internal- are only allowed by
4 // CSSParserModes listed in allowInternalPropertyAndValue() 4 // CSSParserModes listed in allowInternalPropertyAndValue()
5 5
6 parameters: { 6 parameters: {
7 mode: {}, 7 mode: {},
8 }, 8 },
9 9
10 // 10 //
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 "on", 878 "on",
879 "off", 879 "off",
880 880
881 // image-rendering 881 // image-rendering
882 //auto 882 //auto
883 //optimizeSpeed 883 //optimizeSpeed
884 "optimizeQuality", 884 "optimizeQuality",
885 "pixelated", 885 "pixelated",
886 "-webkit-optimize-contrast", 886 "-webkit-optimize-contrast",
887 887
888 // image-orientation
889 "from-image",
890
888 // shape-outside 891 // shape-outside
889 "nonzero", 892 "nonzero",
890 "evenodd", 893 "evenodd",
891 "at", 894 "at",
892 // closest-side 895 // closest-side
893 // farthest-side 896 // farthest-side
894 897
895 "alphabetic", 898 "alphabetic",
896 899
897 // (display-mode:) media feature 900 // (display-mode:) media feature
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 // offset-path 1106 // offset-path
1104 "path", 1107 "path",
1105 "ray", 1108 "ray",
1106 "sides", 1109 "sides",
1107 1110
1108 "calc", 1111 "calc",
1109 "-webkit-calc", 1112 "-webkit-calc",
1110 1113
1111 // scroll-snap-type 1114 // scroll-snap-type
1112 // none 1115 // none
1116 "x",
1117 "y",
1118 // block
1119 // inline
1120 // both
meade_UTC10 2017/06/14 01:24:15 Is this intentionally still commented out?
sunyunjia 2017/06/14 18:36:22 I'm just putting these keywords here. I guess the
1113 "mandatory", 1121 "mandatory",
1114 "proximity", 1122 "proximity",
1115 "from-image", 1123
1124 // scroll-snap-align
1125 // none
1126 // start
1127 // end
1128 // center
1129
1130 // scroll-snap-stop
1131 // normal
1132 // always
1133
1116 1134
1117 // containment 1135 // containment
1118 // paint 1136 // paint
1119 "style", 1137 "style",
1120 "layout", 1138 "layout",
1121 "size", 1139 "size",
1122 1140
1123 // grid auto-repeat 1141 // grid auto-repeat
1124 "auto-fill", 1142 "auto-fill",
1125 "auto-fit", 1143 "auto-fit",
(...skipping 11 matching lines...) Expand all
1137 // shape 1155 // shape
1138 // rect 1156 // rect
1139 // round 1157 // round
1140 1158
1141 // color-gamut 1159 // color-gamut
1142 // srgb 1160 // srgb
1143 "p3", 1161 "p3",
1144 "rec2020", 1162 "rec2020",
1145 ], 1163 ],
1146 } 1164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698