Skip to content

Commit

Permalink
Update of ED report from new reffy run
Browse files Browse the repository at this point in the history
Using reffy commit 11.3.0.
  • Loading branch information
reffy-bot committed Jan 9, 2023
1 parent 76a4e9a commit 77409cf
Show file tree
Hide file tree
Showing 231 changed files with 34,046 additions and 971 deletions.
47 changes: 47 additions & 0 deletions ed/css/css-color-6.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"spec": {
"title": "CSS Color Module Level 6",
"url": "https://drafts.csswg.org/css-color-6/"
},
"properties": [],
"atrules": [],
"selectors": [],
"values": [
{
"name": "contrast-color()",
"prose": "The contrast-color() functional notation identifies a sufficiently contrasting color against a specified background or foreground color without requiring manual computation.",
"type": "function",
"value": "contrast-color( [ [ <color> && [ tbd-fg | tbd-bg ] && <target-contrast>? ] | [ <color> && [ tbd-fg | tbd-bg ] && <target-contrast>, <color># ] )",
"values": [
{
"name": "text",
"prose": "The tbd-fg and tbd-bg keywords indicate the role of the base color in calculating the contrast: as text against a list of candidate background colors (text) or as a background against a list of candidate text colors. (The effective contrast of a pair of colors depends on their usage.)",
"type": "value",
"value": "text"
},
{
"name": "wcag2",
"prose": "The wcag2 keyword and wcag2() functional notations indicate use of the [WCAG21] luminance contrast algorithm. Their syntax is:",
"type": "value",
"value": "wcag2"
},
{
"name": "wcag2()",
"prose": "The wcag2 keyword and wcag2() functional notations indicate use of the [WCAG21] luminance contrast algorithm. Their syntax is:",
"type": "function"
}
]
},
{
"name": "<target-contrast>",
"prose": "The <target-contrast> argument specifies the contrast algorithm(s) to use. If no color candidates have been provided, <target-contrast> may be omitted, in which case a UA-chosen algorithm is used.",
"type": "type",
"value": "<wcag2>"
},
{
"name": "<wcag2>",
"type": "type",
"value": "wcag | wcag2([<number> | [ aa | aaa ] && large? ])"
}
]
}
57 changes: 57 additions & 0 deletions ed/css/css-conditional-values.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"spec": {
"title": "CSS Conditional Values Module Level 1",
"url": "https://drafts.csswg.org/css-conditional-values-1/"
},
"properties": [],
"atrules": [],
"selectors": [],
"values": [
{
"name": "<boolean-constant>",
"type": "type",
"value": "'true' | 'false'"
},
{
"name": "<condition>",
"type": "type",
"value": "not <condition-in-parens> | <condition-in-parens> [ and <condition-in-parens> ]* | <condition-in-parens> [ or <condition-in-parens> ]*"
},
{
"name": "<condition-in-parens>",
"type": "type",
"value": "( <condition> ) | <atomic-condition>"
},
{
"name": "<atomic-condition>",
"type": "type",
"value": "<comparison-operand> <comparison-operator> <comparison-operand> | <boolean-constant>"
},
{
"name": "<comparison-operand>",
"type": "type",
"value": "<dimension> | <number> | <percentage> | <ident>"
},
{
"name": "<comparison-operator>",
"type": "type",
"value": "[ '=' | '>=' | '>' | '<' | '<=' ]"
},
{
"name": "if()",
"prose": "The if() function allows authors to set a property value (or parts thereof) to different values based on certain conditions.",
"type": "function",
"value": "if( <condition>, <consequent> [, <antecedent>]?) | if( <condition> then <consequent> [else <antecedent>]?) | if( <condition>, <consequent> [, <antecedent>]?)"
},
{
"name": "<consequent>",
"type": "type",
"value": "<declaration-value>"
},
{
"name": "<antecedent>",
"type": "type",
"value": "<declaration-value>"
}
]
}
31 changes: 31 additions & 0 deletions ed/css/selectors-nonelement.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"spec": {
"title": "Non-element Selectors Module Level 1",
"url": "https://drafts.csswg.org/selectors-nonelement-1/"
},
"properties": [],
"atrules": [],
"selectors": [
{
"name": "::attr()",
"value": "::attr( <namespace-attr>? )"
}
],
"values": [
{
"name": "<namespace-attr>",
"type": "type",
"value": "[ <na-prefix>? '|' ]? <na-name>"
},
{
"name": "<na-prefix>",
"type": "type",
"value": "<ident> | '*'"
},
{
"name": "<na-name>",
"type": "type",
"value": "<ident> | '*'"
}
]
}
File renamed without changes.
Loading

0 comments on commit 77409cf

Please sign in to comment.