Changeset 215151 in webkit
- Timestamp:
- Apr 8, 2017, 4:03:16 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r215147 r215151 1 2017-04-08 Simon Fraser <simon.fraser@apple.com> 2 3 Update CSSProperties.json with correct fill-and-stroke status, and other cleanup 4 https://bugs.webkit.org/show_bug.cgi?id=170643 5 6 Reviewed by Chris Dumez. 7 8 Structural changes: 9 - move implementation-related "comment" blocks into "codegen-properties" 10 - move status-related "comment" blocks into "status" 11 12 Add the concept of "obsolete-category" and "obsolete-url" for properties 13 like the text-fill-and-stroke properties that used to be specified in SVG but 14 now have their own module shared with CSS. 15 16 Update the status of paint-order, stroke-linecap, stroke-linejoin, stroke-miterlimit 17 and stroke-width to "supported", overriding the default for css-text-fill-and-stroke which 18 is "under consideration". 19 20 Add display values "flow" and "flow-root" but mark them as unimplemented. 21 22 Fix makeprop.pl to ignore comments inside codegen-properties. 23 24 * css/CSSProperties.json: 25 * css/makeprop.pl: 26 (addProperty): 27 1 28 2017-04-08 Eric Carlson <eric.carlson@apple.com> 2 29 -
trunk/Source/WebCore/css/CSSProperties.json
r215146 r215151 178 178 "high-priority": true 179 179 }, 180 "status": { 181 "comment": "All the values from CSS Color Level 3 are supported, as well as the 8- and 4-digit forms of hex color, and the color() function." 182 }, 180 183 "specification": { 181 184 "category": "css-color", 182 "url": "https://www.w3.org/TR/css-color-4/#the-color-property", 183 "comment": "All the values from CSS Color Level 3 are supported, as well as the 8- and 4-digit forms of hex color, and the color() function." 185 "url": "https://www.w3.org/TR/css-color-4/#the-color-property" 184 186 } 185 187 }, … … 203 205 "inline", 204 206 "block", 207 { 208 "value": "flow", 209 "status": "not implemented", 210 "url": "https://www.w3.org/TR/css-display-3/#valdef-display-flow" 211 }, 212 { 213 "value": "flow-root", 214 "status": "not implemented", 215 "url": "https://www.w3.org/TR/css-display-3/#valdef-display-flow-root" 216 }, 205 217 "list-item", 206 218 { … … 211 223 { 212 224 "value": "run-in", 213 "status": " Removed",225 "status": "removed", 214 226 "url": "https://www.w3.org/TR/css-display-3/#valdef-display-run-in", 215 227 "comment": "Removed in https://trac.webkit.org/r163560" … … 741 753 } 742 754 ], 743 " status": {744 "comment": 755 "codegen-properties": { 756 "comment": "This is the highest priority property and 'is resolved before all other properties, to ensure that its value can be checked when determining a smart default font size', (<https://trac.webkit.org/browser/trunk/Source/WebCore/ChangeLog?rev=172861>)." 745 757 }, 746 758 "specification": { … … 2781 2793 "converter": "PaintOrder" 2782 2794 }, 2783 "specification": { 2784 "category": "svg", 2785 "url": "https://www.w3.org/TR/SVG2/painting.html#PaintOrderProperty" 2795 "status": "supported", 2796 "specification": { 2797 "category": "css-text-fill-and-stroke", 2798 "obsolete-category": "svg", 2799 "obsolete-url": "https://www.w3.org/TR/SVG2/painting.html#PaintOrderProperty" 2786 2800 } 2787 2801 }, … … 2988 3002 "name-for-methods": "CapStyle" 2989 3003 }, 2990 "specification": { 2991 "category": "svg", 2992 "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeLinecapProperty" 3004 "status": "supported", 3005 "specification": { 3006 "category": "css-text-fill-and-stroke", 3007 "url": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-linecap", 3008 "obsolete-category": "svg", 3009 "obsolete-url": "https://www.w3.org/TR/SVG11/painting.html#StrokeLinecapProperty" 2993 3010 } 2994 3011 }, … … 3003 3020 "name-for-methods": "JoinStyle" 3004 3021 }, 3005 "specification": { 3006 "category": "svg", 3007 "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeMiterlimitProperty" 3022 "status": "supported", 3023 "specification": { 3024 "category": "css-text-fill-and-stroke", 3025 "url": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-linejoin", 3026 "obsolete-category": "svg", 3027 "obsolete-url": "https://www.w3.org/TR/SVG11/painting.html#StrokeMiterlimitProperty" 3008 3028 } 3009 3029 }, … … 3014 3034 "converter": "Number<float>" 3015 3035 }, 3016 "specification": { 3017 "category": "svg", 3018 "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeMiterlimitProperty" 3036 "status": "supported", 3037 "specification": { 3038 "category": "css-text-fill-and-stroke", 3039 "url": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-miterlimit", 3040 "obsolete-category": "svg", 3041 "obsolete-url": "https://www.w3.org/TR/SVG11/painting.html#StrokeMiterlimitProperty" 3019 3042 } 3020 3043 }, … … 3037 3060 "converter": "Length" 3038 3061 }, 3039 "specification": { 3040 "category": "svg", 3041 "url": "https://www.w3.org/TR/SVG11/painting.html#StrokeWidthProperty" 3062 "status": "supported", 3063 "specification": { 3064 "category": "css-text-fill-and-stroke", 3065 "url": "https://drafts.fxtf.org/fill-stroke-3/#propdef-stroke-width", 3066 "obsolete-category": "svg", 3067 "obsolete-url": "https://www.w3.org/TR/SVG11/painting.html#StrokeWidthProperty" 3042 3068 } 3043 3069 }, … … 3607 3633 "name-for-methods": "OverflowWrap" 3608 3634 }, 3609 "status": "obsolete", 3635 "status": { 3636 "status": "obsolete", 3637 "comment": "Replaced by overflow-wrap" 3638 }, 3610 3639 "specification": { 3611 3640 "category": "css-text", 3612 "url": "https://www.w3.org/TR/css-text-3/#overflow-wrap", 3613 "comment": "Replaced by overflow-wrap" 3641 "url": "https://www.w3.org/TR/css-text-3/#overflow-wrap" 3614 3642 } 3615 3643 }, … … 3784 3812 }, 3785 3813 "status": { 3786 "status": "experimental" 3787 }, 3788 "specification": { 3814 "status": "experimental", 3789 3815 "comment": "Partially subsumed by background-blend-mode." 3790 3816 } … … 4974 5000 "edges" 4975 5001 ], 4976 "status": "obsolete", 5002 "status": { 5003 "status": "obsolete", 5004 "comment": "Added in https://trac.webkit.org/changeset/108133" 5005 }, 4977 5006 "specification": { 4978 5007 "category": "css-line-grid", 4979 "url": "https://www.w3.org/TR/css-line-grid-1/", 4980 "comment": "Added in https://trac.webkit.org/changeset/108133" 5008 "url": "https://www.w3.org/TR/css-line-grid-1/" 4981 5009 } 4982 5010 }, … … 5962 5990 ], 5963 5991 "codegen-properties": { 5964 "name-for-methods": "TransformStyle3D" 5965 }, 5966 "status": { 5992 "name-for-methods": "TransformStyle3D", 5967 5993 "comment": "Keeping -webkit-transform-style around is how we'll detect legacy content. At that point, we'll have to add a custom builder and a new ETransformStyle3D type. FIXME: this never happened." 5968 5994 } -
trunk/Source/WebCore/css/makeprop.pl
r213007 r215151 189 189 } elsif ($codegenOptionName eq "skip-codegen") { 190 190 next; 191 } elsif ($codegenOptionName eq "comment") { 192 next; 191 193 } elsif ($codegenOptionName eq "high-priority") { 192 194 $nameIsHighPriority{$name} = 1; -
trunk/Tools/ChangeLog
r215145 r215151 1 2017-04-08 Simon Fraser <simon.fraser@apple.com> 2 3 Update CSSProperties.json with correct fill-and-stroke status, and other cleanup 4 https://bugs.webkit.org/show_bug.cgi?id=170643 5 6 Reviewed by Chris Dumez. 7 8 Update the CSSProperties.json style checker to allow: 9 - comments in codegen_properties 10 - obsolete-category and obsolete-url in specification blocks 11 - renamed "done" to "supported" 12 13 Fix some references to codegen_properties to be codegen-properties. 14 15 * Scripts/webkitpy/style/checkers/jsonchecker.py: 16 (JSONCSSPropertiesChecker.validate_status_type): 17 (JSONCSSPropertiesChecker.validate_property_specification): 18 (JSONCSSPropertiesChecker.check_codegen_properties): 19 1 20 2017-04-08 Youenn Fablet <youenn@apple.com> 2 21 -
trunk/Tools/Scripts/webkitpy/style/checkers/jsonchecker.py
r213082 r215151 178 178 179 179 allowed_statuses = { 180 ' done',180 'supported', 181 181 'in development', 182 182 'under consideration', … … 230 230 'category': self.validate_property_category, 231 231 'url': self.validate_url, 232 'obsolete-category': self.validate_property_category, 233 'obsolete-url': self.validate_url, 232 234 'documentation-url': self.validate_url, 233 235 'keywords': self.validate_array, … … 266 268 def check_codegen_properties(self, property_name, codegen_properties): 267 269 if not isinstance(codegen_properties, (dict, list)): 268 self._handle_style_error(0, 'json/syntax', 5, '"codegen _properties" for property "%s" is not a dictionary or array.' % property_name)270 self._handle_style_error(0, 'json/syntax', 5, '"codegen-properties" for property "%s" is not a dictionary or array.' % property_name) 269 271 return 270 272 … … 272 274 'aliases': self.validate_array, 273 275 'auto-functions': self.validate_boolean, 276 'comment': self.validate_string, 274 277 'conditional-converter': self.validate_string, 275 278 'converter': self.validate_string, … … 294 297 for key, value in codegen_properties.items(): 295 298 if key not in keys_and_validators: 296 self._handle_style_error(0, 'json/syntax', 5, 'codegen _properties for property "%s" has unexpected key "%s".' % (property_name, key))297 return 298 299 keys_and_validators[key](property_name, 'codegen _properties', key, value)299 self._handle_style_error(0, 'json/syntax', 5, 'codegen-properties for property "%s" has unexpected key "%s".' % (property_name, key)) 300 return 301 302 keys_and_validators[key](property_name, 'codegen-properties', key, value)
Note:
See TracChangeset
for help on using the changeset viewer.