Skip to content

Commit 8a70399

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 18.6.2.
1 parent 8d1fd04 commit 8a70399

33 files changed

+1052
-1106
lines changed

ed/algorithms/cookie-store.json

Lines changed: 24 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -690,22 +690,28 @@
690690
"html": "<p>If <var>expires</var> is given, then <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append④\">append</a> `<code>Expires</code>`/<var>expires</var> (<a data-link-type=\"dfn\" href=\"https://wicg.github.io/cookie-store/#date-serialize\" id=\"ref-for-date-serialize\">date serialized</a>) to <var>attributes</var>.</p>"
691691
},
692692
{
693-
"html": "<p>If <var>path</var> does not start with U+002F (<code>/</code>), then return failure.</p>"
694-
},
695-
{
696-
"html": "<p>If <var>path</var> does not end with U+002F (<code>/</code>), then append U+002F (<code>/</code>) to <var>path</var>.</p>"
697-
},
698-
{
699-
"html": "<p>Let <var>encodedPath</var> be the result of <a data-link-type=\"dfn\" href=\"https://encoding.spec.whatwg.org/#utf-8-encode\" id=\"ref-for-utf-8-encode③\">UTF-8 encoding</a> <var>path</var>.</p>"
700-
},
701-
{
702-
"html": "<p>If the <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#byte-sequence\" id=\"ref-for-byte-sequence⑤\">byte sequence</a> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#byte-sequence-length\" id=\"ref-for-byte-sequence-length③\">length</a> of <var>encodedPath</var> is greater than the <a data-link-type=\"dfn\" href=\"https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size\" id=\"ref-for-cookie-maximum-attribute-value-size①\">maximum attribute value size</a>, then return failure.</p>"
693+
"html": "If <var>path</var> is not null:",
694+
"rationale": "if",
695+
"steps": [
696+
{
697+
"html": "<p>If <var>path</var> does not start with U+002F (<code>/</code>), then return failure.</p>"
698+
},
699+
{
700+
"html": "<p>Let <var>encodedPath</var> be the result of <a data-link-type=\"dfn\" href=\"https://encoding.spec.whatwg.org/#utf-8-encode\" id=\"ref-for-utf-8-encode③\">UTF-8 encoding</a> <var>path</var>.</p>"
701+
},
702+
{
703+
"html": "<p>If the <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#byte-sequence\" id=\"ref-for-byte-sequence⑤\">byte sequence</a> <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#byte-sequence-length\" id=\"ref-for-byte-sequence-length③\">length</a> of <var>encodedPath</var> is greater than the <a data-link-type=\"dfn\" href=\"https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size\" id=\"ref-for-cookie-maximum-attribute-value-size①\">maximum attribute value size</a>, then return failure.</p>"
704+
},
705+
{
706+
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append⑤\">Append</a> `<code>Path</code>`/<var>encodedPath</var> to <var>attributes</var>.</p>"
707+
}
708+
]
703709
},
704710
{
705-
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>Path</code>`/<var>encodedPath</var> to <var>attributes</var>.</p>"
711+
"html": "<p>Otherwise, <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">append</a> `<code>Path</code>`/ U+002F (<code>/</code>) to <var>attributes</var>.</p>"
706712
},
707713
{
708-
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>Secure</code>`/`` to <var>attributes</var>.</p>"
714+
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>Secure</code>`/`` to <var>attributes</var>.</p>"
709715
},
710716
{
711717
"html": "Switch on <var>sameSite</var>:",
@@ -716,22 +722,22 @@
716722
"steps": [
717723
{
718724
"case": "\"none\"",
719-
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>SameSite</code>`/`<code>None</code>` to <var>attributes</var>.</p>"
725+
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>SameSite</code>`/`<code>None</code>` to <var>attributes</var>.</p>"
720726
},
721727
{
722728
"case": "\"strict\"",
723-
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>SameSite</code>`/`<code>Strict</code>` to <var>attributes</var>.</p>"
729+
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>SameSite</code>`/`<code>Strict</code>` to <var>attributes</var>.</p>"
724730
},
725731
{
726732
"case": "\"lax\"",
727-
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append\">Append</a> `<code>SameSite</code>`/`<code>Lax</code>` to <var>attributes</var>.</p>"
733+
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append①⓪\">Append</a> `<code>SameSite</code>`/`<code>Lax</code>` to <var>attributes</var>.</p>"
728734
}
729735
]
730736
}
731737
]
732738
},
733739
{
734-
"html": "<p>If <var>partitioned</var> is true, <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append①\">Append</a> `<code>Partitioned</code>`/`` to <var>attributes</var>.</p>"
740+
"html": "<p>If <var>partitioned</var> is true, <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append①\">Append</a> `<code>Partitioned</code>`/`` to <var>attributes</var>.</p>"
735741
},
736742
{
737743
"html": "<p>Perform the steps defined in <a href=\"https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-14#name-storage-model\">Cookies § Storage Model</a> for when the user agent \"receives a cookie\" with <var>url</var> as <var>request-uri</var>, <var>encodedName</var> as <var>cookie-name</var>, <var>encodedValue</var> as <var>cookie-value</var>, and <var>attributes</var> as <var>cookie-attribute-list</var>.</p>\n <p>For the purposes of the steps, the newly-created cookie was received from a \"non-HTTP\" API.</p>"
@@ -747,18 +753,6 @@
747753
"html": "To <dfn class=\"dfn-paneled has-dfn-panel\" data-dfn-type=\"dfn\" data-noexport=\"\" id=\"delete-a-cookie\" role=\"button\" aria-expanded=\"false\" tabindex=\"0\">delete a cookie</dfn> with <var>url</var>, <var>name</var>, <var>domain</var>, <var>path</var>, and <var>partitioned</var> run the following steps:",
748754
"rationale": ".algorithm",
749755
"steps": [
750-
{
751-
"html": "If <var>path</var> is not null, then run these steps:",
752-
"rationale": "if",
753-
"steps": [
754-
{
755-
"html": "<p>If <var>path</var> does not start with U+002F (<code>/</code>), then return failure.</p>"
756-
},
757-
{
758-
"html": "<p>If <var>path</var> does not end with U+002F (<code>/</code>), then append U+002F (<code>/</code>) to <var>path</var>.</p>"
759-
}
760-
]
761-
},
762756
{
763757
"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>"
764758
},
@@ -890,7 +884,7 @@
890884
"html": "<p>Let <var>item</var> be the result of running <a data-link-type=\"dfn\" href=\"https://wicg.github.io/cookie-store/#create-a-cookielistitem\" id=\"ref-for-create-a-cookielistitem①\">create a CookieListItem</a> from <var>change</var>’s cookie.</p>"
891885
},
892886
{
893-
"html": "<p>If <var>change</var>’s type is <em>changed</em>, then <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append①\">append</a> <var>item</var> to <var>changedList</var>.</p>"
887+
"html": "<p>If <var>change</var>’s type is <em>changed</em>, then <a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append①\">append</a> <var>item</var> to <var>changedList</var>.</p>"
894888
},
895889
{
896890
"html": "Otherwise, run these steps:",
@@ -900,7 +894,7 @@
900894
"html": "<p>Set <var>item</var>[\"<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://wicg.github.io/cookie-store/#dom-cookielistitem-value\" id=\"ref-for-dom-cookielistitem-value\">value</a></code>\"] to undefined.</p>"
901895
},
902896
{
903-
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append①\">Append</a> <var>item</var> to <var>deletedList</var>.</p>"
897+
"html": "<p><a data-link-type=\"dfn\" href=\"https://infra.spec.whatwg.org/#list-append\" id=\"ref-for-list-append①\">Append</a> <var>item</var> to <var>deletedList</var>.</p>"
904898
}
905899
]
906900
}

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-flex-basis-auto\" id=\"ref-for-valdef-flex-basis-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)