[CSS extracts] Handle non-breaking spaces in property key names - #2074
Merged
Conversation
Via w3c/webref#1908 (comment) The SVG spec uses non-breaking spaces in property definition tables for "Computed value". Reffy failed to convert that to `computedValue` as a result. This update uses the more generic `\s` regular expression to split on spaces.
dontcallmedom
approved these changes
Apr 29, 2026
tidoust
added a commit
that referenced
this pull request
Apr 30, 2026
Feature patched: - [CSS extracts] Handle non-breaking spaces in property key names (#2074) Dependencies bumped: - Bump respec from 35.9.0 to 37.0.0 (#2075) - Bump web-specs from 3.82.1 to 3.84.0 (#2076) - Bump rollup from 4.60.1 to 4.60.2 (#2070) - Bump ajv from 8.18.0 to 8.20.0 (#2073) - Bump puppeteer from 24.40.0 to 24.42.0 (#2071)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Via w3c/webref#1908 (comment)
The SVG spec uses non-breaking spaces in property definition tables for "Computed value". Reffy failed to convert that to
computedValueas a result. This update uses the more generic\sregular expression to split on spaces.