Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
00b8842
renew css value processing document
sakupi01 Jul 27, 2025
7a730ad
correct anchor links
sakupi01 Jul 27, 2025
e16c142
use non-code/redirect ref
sakupi01 Jul 27, 2025
0a5567b
update non-inherited/inherited property code description
sakupi01 Jul 27, 2025
da297a2
Apply suggestion from @estelle
sakupi01 Aug 12, 2025
a7ff563
Apply suggestion from @estelle
sakupi01 Aug 12, 2025
a2bc22b
Apply suggestion from @estelle
sakupi01 Aug 12, 2025
ddb85e1
Apply suggestion from @estelle
sakupi01 Aug 12, 2025
57d9f35
links for layers and origins
oihdsf Aug 12, 2025
118b89e
modify&split the first paragraph
oihdsf Aug 12, 2025
10974c4
make all code comments removed and replaced with prose explanations
oihdsf Aug 12, 2025
c24c91f
lowercased the link texts
oihdsf Aug 12, 2025
21f4c15
remove spaces
oihdsf Aug 12, 2025
49ed161
merge bullet items and add link to error handling
oihdsf Aug 12, 2025
8b7cd2a
filtering: include suggestion
oihdsf Aug 12, 2025
4bfb703
Revert "merge bullet items and add link to error handling"
oihdsf Aug 12, 2025
6515be7
merge bullet items and add link to error handling
oihdsf Aug 12, 2025
6467d7d
Update files/en-us/web/css/css_cascade/value_processing/index.md
sakupi01 Aug 27, 2025
1206ee9
Update files/en-us/web/css/css_cascade/value_processing/index.md
sakupi01 Aug 27, 2025
9702e1e
all grammatical changes
oihdsf Aug 27, 2025
864427f
fixed defaulting description with accuracy
oihdsf Aug 27, 2025
af0de08
Add 'Actual value' to CSS value processing index
sakupi01 Aug 27, 2025
e94c0b9
Merge branch 'main' into fix/value-processing
estelle Aug 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestion from @estelle
Co-authored-by: Estelle Weyl <[email protected]>
  • Loading branch information
sakupi01 and estelle authored Aug 12, 2025
commit a7ff5632267aa726e2bc4bc5fdb141d98fe0890e
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Before diving into the individual value stages, it's important to understand the
- Validates that property values match the expected syntax
- Eliminates declarations that are syntactically invalid

Only valid declarations become declared values. Declarations with invalid property names or invalid values get filtered out. In this example, only the {{cssxref("font-size")}} and {{cssxref("font-weight")}} declarations are processed. The [CSS parser filters out errors](/en-US/docs/Web/CSS/CSS_syntax/Error_handling#css_parser_errors), ignoring or "filtering" out the declaration with the invalid property name:
```css
/* Valid declarations become declared values */
p {
Expand Down