Skip to content

Commit c0c4581

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 18.6.1.
1 parent 4889791 commit c0c4581

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+700
-638
lines changed

ed/algorithms/cookie-store.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@
763763
"html": "<p>Let <var>expires</var> be the earliest representable date represented <a data-link-type=\"dfn\" href=\"https://wicg.github.io/cookie-store/#as-a-timestamp\" id=\"ref-for-as-a-timestamp①\">as a timestamp</a>.</p>"
764764
},
765765
{
766-
"html": "<p>Let <var>value</var> be the empty string.</p>"
766+
"html": "<p>Let <var>value</var> be any non-empty <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#implementation-defined\" id=\"ref-for-implementation-defined\">implementation-defined</a> string.</p>"
767767
},
768768
{
769769
"html": "<p>Let <var>sameSite</var> be \"<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://wicg.github.io/cookie-store/#dom-cookiesamesite-strict\" id=\"ref-for-dom-cookiesamesite-strict④\">strict</a></code>\".</p>"

ed/algorithms/css-borders-4.json

Lines changed: 76 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,90 @@
55
},
66
"algorithms": [
77
{
8-
"name": "superellipse-exponent-to-interpolation-value",
9-
"html": "To interpolate a <a class=\"production css\" data-link-type=\"type\" href=\"https://drafts.csswg.org/css-values-4/#number-value\" id=\"ref-for-number-value②\">&lt;number [0,∞]&gt;</a> <var>exponent</var> to an interpolation value between 0 and 1:",
10-
"rationale": ".algorithm",
8+
"name": "superellipse-param-to-interpolation-value",
9+
"html": "To interpolate a <a class=\"production css\" data-link-type=\"type\" href=\"https://drafts.csswg.org/css-values-4/#number-value\" id=\"ref-for-number-value②\">&lt;number [-∞,∞]&gt;</a> <var>s</var> to an interpolation value between 0 and 1, return the first matching statement, switch on <var>s</var>:",
10+
"rationale": ".switch",
1111
"steps": [
1212
{
13-
"html": "<p>If <var>exponent</var> is 0, return 0.</p>"
14-
},
15-
{
16-
"html": "<p>If <var>exponent</var> is ∞, return 1.</p>"
17-
},
18-
{
19-
"html": "<p>Return <code>1/(2^(1/<var>exponent</var>))</code>.</p>"
13+
"operation": "switch",
14+
"steps": [
15+
{
16+
"case": "-∞",
17+
"html": "<p>Return 0.</p>"
18+
},
19+
{
20+
"case": "",
21+
"html": "<p>Return 1.</p>"
22+
},
23+
{
24+
"case": "Otherwise",
25+
"html": "",
26+
"rationale": "let",
27+
"steps": [
28+
{
29+
"html": "<p>Let <var>k</var> be <code>0.5<sup>abs(<var>s</var>)</sup></code>.</p>"
30+
},
31+
{
32+
"html": "<p>Let <var>convexHalfCorner</var> be <code>0.5<sup><var>k</var></sup></code>.</p>"
33+
},
34+
{
35+
"html": "<p>If <var>param</var> is less than 0, return <code>1 - <var>convexHalfCorner</var></code>.</p>"
36+
},
37+
{
38+
"html": "<p>Return <var>convexHalfCorner</var>.</p>"
39+
}
40+
]
41+
}
42+
]
2043
}
2144
]
2245
},
2346
{
24-
"name": "superellipse-exponent-to-interpolation-value",
25-
"html": "To convert a <a class=\"production css\" data-link-type=\"type\" href=\"https://drafts.csswg.org/css-values-4/#number-value\" id=\"ref-for-number-value③\">&lt;number [0,1]&gt;</a> <var>interpolationValue</var> back to a <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-borders-4/#superellipse-exponent\" id=\"ref-for-superellipse-exponent⑤\">superellipse exponent</a>:",
26-
"rationale": "if",
47+
"name": "superellipse-param-to-interpolation-value",
48+
"html": "To convert a <a class=\"production css\" data-link-type=\"type\" href=\"https://drafts.csswg.org/css-values-4/#number-value\" id=\"ref-for-number-value③\">&lt;number [0,1]&gt;</a> <var>interpolationValue</var> back to a <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-borders-4/#superellipse-parameter\" id=\"ref-for-superellipse-parameter⑥\">superellipse parameter</a>, switch on <var>interpolationValue</var>:",
49+
"rationale": ".switch",
2750
"steps": [
2851
{
29-
"html": "<p>If <var>interpolationValue</var> is 0, return 0.</p>"
30-
},
31-
{
32-
"html": "<p>If <var>interpolationValue</var> is 1, return ∞.</p>"
33-
},
34-
{
35-
"html": "<p>Return <code>ln(0.5)/ln(<var>interpolationValue</var>)</code>.</p>"
52+
"operation": "switch",
53+
"steps": [
54+
{
55+
"case": "0",
56+
"html": "<p>Return -∞.</p>"
57+
},
58+
{
59+
"case": "0.5",
60+
"html": "<p>Return 0.</p>"
61+
},
62+
{
63+
"case": "1",
64+
"html": "<p>Return ∞.</p>"
65+
},
66+
{
67+
"case": "Otherwise",
68+
"html": "",
69+
"rationale": "let",
70+
"steps": [
71+
{
72+
"html": "<p>Let <var>convexHalfCorner</var> be <var>interpolationValue</var>.</p>"
73+
},
74+
{
75+
"html": "<p>If <var>interpolationValue</var> is less than 0.5, set <var>convexHalfCorner</var> to 1 - <var>interpolationValue</var>.</p>"
76+
},
77+
{
78+
"html": "<p>Let <var>k</var> be <code>ln(0.5) / ln(<var>convexHalfCorner</var>)</code>.</p>"
79+
},
80+
{
81+
"html": "<p>Let <var>s</var> be <code>log2(<var>k</var>)</code>.</p>"
82+
},
83+
{
84+
"html": "<p>If <var>interpolationValue</var> is less than 0.5, return -<var>s</var>.</p>"
85+
},
86+
{
87+
"html": "<p>Return <var>s</var>.</p>"
88+
}
89+
]
90+
}
91+
]
3692
}
3793
]
3894
}

ed/algorithms/css-color-adjust-1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"rationale": ".algorithm",
1212
"steps": [
1313
{
14-
"html": "<p>If the user’s <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#preferred-color-scheme\" id=\"ref-for-preferred-color-scheme②\">preferred color scheme</a>,\nas indicated by the <a class=\"property css\" data-link-type=\"property\">prefers-color-scheme</a> media feature,\nis present among the listed <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#color-scheme\" id=\"ref-for-color-scheme①①\">color schemes</a>,\nand is supported by the user agent,\nthat’s the element’s <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#used-color-scheme\" id=\"ref-for-used-color-scheme\">used color scheme</a>.</p>"
14+
"html": "<p>If the user’s <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#preferred-color-scheme\" id=\"ref-for-preferred-color-scheme②\">preferred color scheme</a>,\nas indicated by the <a class=\"css\" data-link-type=\"descriptor\" href=\"https://drafts.csswg.org/mediaqueries-5/#descdef-media-prefers-color-scheme\" id=\"ref-for-descdef-media-prefers-color-scheme④\">prefers-color-scheme</a> media feature,\nis present among the listed <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#color-scheme\" id=\"ref-for-color-scheme①①\">color schemes</a>,\nand is supported by the user agent,\nthat’s the element’s <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#used-color-scheme\" id=\"ref-for-used-color-scheme\">used color scheme</a>.</p>"
1515
},
1616
{
1717
"html": "<p>Otherwise,\nif the user has indicated an overriding preference for their chosen color scheme,\nand the <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-color-adjust-1/#valdef-color-scheme-only\" id=\"ref-for-valdef-color-scheme-only①\">only</a> keyword is not present in <a class=\"property css\" data-link-type=\"property\" href=\"https://drafts.csswg.org/css-color-adjust-1/#propdef-color-scheme\" id=\"ref-for-propdef-color-scheme⑥\">color-scheme</a> for the element,\nthe user agent must <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#override-the-color-scheme\" id=\"ref-for-override-the-color-scheme①\">override the color scheme</a> with the user’s <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-color-adjust-1/#preferred-color-scheme\" id=\"ref-for-preferred-color-scheme③\">preferred color scheme</a>.\nSee <a href=\"https://drafts.csswg.org/css-color-adjust-1/#color-scheme-override\">§ 2.3 Overriding the Color Scheme</a>.</p>"

ed/algorithms/css-flexbox-1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"html": "Otherwise,\n\t\t\t\t\tif the used <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-flex-basis\" id=\"ref-for-flex-flex-basis⑥\">flex basis</a> is <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-flexbox-1/#valdef-flex-basis-content\" id=\"ref-for-valdef-flex-basis-content⑧\">content</a> or depends on its <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-sizing-3/#available\" id=\"ref-for-available②\">available space</a>,\n\t\t\t\t\tthe available main size is infinite,\n\t\t\t\t\tand the flex item’s inline axis is parallel to the main axis,\n\t\t\t\t\tlay the item out using <a href=\"https://www.w3.org/TR/css3-writing-modes/#orthogonal-flows\">the rules for a box in an orthogonal flow</a> <a data-link-type=\"biblio\" href=\"https://drafts.csswg.org/css-flexbox-1/#biblio-css3-writing-modes\" title=\"CSS Writing Modes Level 3\">[CSS3-WRITING-MODES]</a>.\n\t\t\t\t\tThe <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-base-size\" id=\"ref-for-flex-base-size④\">flex base size</a> is the item’s max-content <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#main-size\" id=\"ref-for-main-size①①\">main size</a>."
6969
},
7070
{
71-
"html": "Otherwise,\n\t\t\t\t\tsize the item into the <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-sizing-3/#available\" id=\"ref-for-available③\">available space</a> using its used <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-flex-basis\" id=\"ref-for-flex-flex-basis⑦\">flex basis</a> in place of its <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#main-size\" id=\"ref-for-main-size①②\">main size</a>,\n\t\t\t\t\ttreating a value of <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-flexbox-1/#valdef-flex-basis-content\" id=\"ref-for-valdef-flex-basis-content⑨\">content</a> as <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content\" id=\"ref-for-valdef-width-max-content\">max-content</a>.\n\t\t\t\t\tIf a <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#cross-size\" id=\"ref-for-cross-size①②\">cross size</a> is needed to determine the <span id=\"ref-for-main-size①③\">main size</span> (e.g. when the <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-item\" id=\"ref-for-flex-item⑨④\">flex item</a>’s <span id=\"ref-for-main-size①④\">main size</span> is in its block axis,\n\t\t\t\t\tor when it has a <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-sizing-4/#preferred-aspect-ratio\" id=\"ref-for-preferred-aspect-ratio④\">preferred aspect ratio</a>)\n\t\t\t\t\tand the <span id=\"ref-for-flex-item⑨⑤\">flex item</span>’s cross size is <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-flexbox-1/#valdef-align-items-auto\" id=\"ref-for-valdef-align-items-auto\">auto</a> and not <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#definite\" id=\"ref-for-definite①⓪\">definite</a>,\n\t\t\t\t\tin this calculation use <span class=\"css\">fit-content</span> as the <span id=\"ref-for-flex-item⑨⑥\">flex item</span>’s <span id=\"ref-for-cross-size①③\">cross size</span>.\n\t\t\t\t\tThe <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-base-size\" id=\"ref-for-flex-base-size⑤\">flex base size</a> is the item’s resulting <span id=\"ref-for-main-size①⑤\">main size</span>."
71+
"html": "Otherwise,\n\t\t\t\t\tsize the item into the <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-sizing-3/#available\" id=\"ref-for-available③\">available space</a> using its used <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-flex-basis\" id=\"ref-for-flex-flex-basis⑦\">flex basis</a> in place of its <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#main-size\" id=\"ref-for-main-size①②\">main size</a>,\n\t\t\t\t\ttreating a value of <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-flexbox-1/#valdef-flex-basis-content\" id=\"ref-for-valdef-flex-basis-content⑨\">content</a> as <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-sizing-3/#valdef-width-max-content\" id=\"ref-for-valdef-width-max-content\">max-content</a>.\n\t\t\t\t\tIf a <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#cross-size\" id=\"ref-for-cross-size①②\">cross size</a> is needed to determine the <span id=\"ref-for-main-size①③\">main size</span> (e.g. when the <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-item\" id=\"ref-for-flex-item⑨④\">flex item</a>’s <span id=\"ref-for-main-size①④\">main size</span> is in its block axis,\n\t\t\t\t\tor when it has a <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-sizing-4/#preferred-aspect-ratio\" id=\"ref-for-preferred-aspect-ratio④\">preferred aspect ratio</a>)\n\t\t\t\t\tand the <span id=\"ref-for-flex-item⑨⑤\">flex item</span>’s cross size is <a class=\"css\" data-link-type=\"maybe\" href=\"https://drafts.csswg.org/css-flexbox-1/#valdef-align-items-auto\" id=\"ref-for-valdef-align-items-auto①\">auto</a> and not <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#definite\" id=\"ref-for-definite①⓪\">definite</a>,\n\t\t\t\t\tin this calculation use <span class=\"css\">fit-content</span> as the <span id=\"ref-for-flex-item⑨⑥\">flex item</span>’s <span id=\"ref-for-cross-size①③\">cross size</span>.\n\t\t\t\t\tThe <a data-link-type=\"dfn\" href=\"https://drafts.csswg.org/css-flexbox-1/#flex-base-size\" id=\"ref-for-flex-base-size⑤\">flex base size</a> is the item’s resulting <span id=\"ref-for-main-size①⑤\">main size</span>."
7272
}
7373
]
7474
},

0 commit comments

Comments
 (0)