Skip to content

Commit d068a72

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 19.2.2.
1 parent 81be4aa commit d068a72

36 files changed

+9039
-2922
lines changed

ed/algorithms/html.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37664,13 +37664,16 @@
3766437664
"name": "NavigatorID/appVersion",
3766537665
"href": "https://html.spec.whatwg.org/multipage/system-state.html#dom-navigator-appversion",
3766637666
"html": "The <dfn data-dfn-for=\"NavigatorID\" id=\"dom-navigator-appversion\" data-dfn-type=\"attribute\"><code>appVersion</code></dfn> getter steps are:",
37667-
"rationale": "if",
37667+
"rationale": "let",
3766837668
"steps": [
3766937669
{
37670-
"html": "<p>If the <a href=\"https://fetch.spec.whatwg.org/#default-user-agent-value\" id=\"client-identification:default-user-agent-value\" data-x-internal=\"default-user-agent-value\">default `<code>User-Agent</code>`\n value</a> does not start with `<code>Mozilla/5.0 (</code>`, then return the empty\n string.</p>"
37670+
"html": "<p>Let <var>userAgent</var> be <a id=\"client-identification:this\" href=\"https://webidl.spec.whatwg.org/#this\" data-x-internal=\"this\">this</a>'s <a id=\"client-identification:relevant-settings-object\" href=\"https://html.spec.whatwg.org/multipage/webappapis.html#relevant-settings-object\">relevant settings object</a>'s\n <a href=\"https://fetch.spec.whatwg.org/#environment-default-user-agent-value\" id=\"client-identification:environment-default-user-agent-value\" data-x-internal=\"environment-default-user-agent-value\">environment default `<code>User-Agent</code>`\n value</a>.</p>"
37671+
},
37672+
{
37673+
"html": "<p>If <var>userAgent</var> does not start with `<code>Mozilla/5.0 (</code>`, then\n return the empty string.</p>"
3767137674
},
3767237675
{
37673-
"html": "<p>Let <var>trail</var> be the substring of the <a href=\"https://fetch.spec.whatwg.org/#default-user-agent-value\" id=\"client-identification:default-user-agent-value-2\" data-x-internal=\"default-user-agent-value\">default `<code>User-Agent</code>` value</a>, <a href=\"https://infra.spec.whatwg.org/#isomorphic-decode\" id=\"client-identification:isomorphic-decode\" data-x-internal=\"isomorphic-decode\">isomorphic decoded</a>, that follows the \"<code>Mozilla/</code>\" prefix.</p>"
37676+
"html": "<p>Let <var>trail</var> be the substring of <var>userAgent</var>, <a href=\"https://infra.spec.whatwg.org/#isomorphic-decode\" id=\"client-identification:isomorphic-decode\" data-x-internal=\"isomorphic-decode\">isomorphic decoded</a>, that follows the \"<code>Mozilla/</code>\" prefix.</p>"
3767437677
},
3767537678
{
3767637679
"html": "<dl class=\"switch\"><dt>If the <a href=\"https://html.spec.whatwg.org/multipage/system-state.html#concept-navigator-compatibility-mode\" id=\"client-identification:concept-navigator-compatibility-mode-2\">navigator compatibility\n mode</a> is <i>Chrome</i> or <i>WebKit</i></dt><dd><p>Return <var>trail</var>.</p></dd><dt>If the <a href=\"https://html.spec.whatwg.org/multipage/system-state.html#concept-navigator-compatibility-mode\" id=\"client-identification:concept-navigator-compatibility-mode-3\">navigator compatibility\n mode</a> is <i>Gecko</i></dt><dd>\n <p>If <var>trail</var> starts with \"<code>5.0 (Windows</code>\", then return \"<code>5.0 (Windows)</code>\".</p>\n\n <p>Otherwise, return the prefix of <var>trail</var> up to but not including the first U+003B\n (;), concatenated with the character U+0029 RIGHT PARENTHESIS. For example, \"<code>5.0 (Macintosh)</code>\", \"<code>5.0 (Android 10)</code>\", or \"<code>5.0 (X11)</code>\".</p> \n </dd></dl>",

ed/algorithms/sanitizer-api.json

Lines changed: 733 additions & 115 deletions
Large diffs are not rendered by default.

ed/algorithms/wasm-js-api-2.json

Lines changed: 1891 additions & 285 deletions
Large diffs are not rendered by default.

ed/algorithms/wasm-web-api-2.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
},
66
"algorithms": [
77
{
8-
"name": "WebAssembly/instantiateStreaming(source, importObject)",
8+
"name": "WebAssembly/instantiateStreaming(source, importObject, options)",
99
"href": "https://webassembly.github.io/spec/web-api/#dom-webassembly-instantiatestreaming",
10-
"html": "The <dfn class=\"dfn-paneled idl-code has-dfn-panel\" data-dfn-for=\"WebAssembly\" data-dfn-type=\"method\" data-export=\"\" data-lt=\"instantiateStreaming(source, importObject)|instantiateStreaming(source)\" id=\"dom-webassembly-instantiatestreaming\" role=\"button\" aria-expanded=\"false\" tabindex=\"0\"><code>instantiateStreaming(<var>source</var>, <var>importObject</var>)</code></dfn> method, when invoked, performs the following steps:",
10+
"html": "The <dfn class=\"dfn-paneled idl-code has-dfn-panel\" data-dfn-for=\"WebAssembly\" data-dfn-type=\"method\" data-export=\"\" data-lt=\"instantiateStreaming(source, importObject, options)|instantiateStreaming(source, importObject)|instantiateStreaming(source)\" id=\"dom-webassembly-instantiatestreaming\" role=\"button\" aria-expanded=\"false\" tabindex=\"0\"><code>instantiateStreaming(<var>source</var>, <var>importObject</var>, <var>options</var>)</code></dfn> method, when invoked, performs the following steps:",
1111
"rationale": ".algorithm",
1212
"steps": [
1313
{
14-
"html": "<p>Let <var>promiseOfModule</var> be the result of <a data-link-type=\"dfn\" href=\"https://webassembly.github.io/spec/web-api/#compile-a-potential-webassembly-response\" id=\"ref-for-compile-a-potential-webassembly-response①\">compiling a potential WebAssembly response</a> with <var>source</var>.</p>"
14+
"html": "<p>Let <var>promiseOfModule</var> be the result of <a data-link-type=\"dfn\" href=\"https://webassembly.github.io/spec/web-api/#compile-a-potential-webassembly-response\" id=\"ref-for-compile-a-potential-webassembly-response①\">compiling a potential WebAssembly response</a> with <var>source</var> using <var>options</var>.</p>"
1515
},
1616
{
1717
"html": "<p>Return the result of <a data-link-type=\"dfn\" href=\"https://webassembly.github.io/spec/js-api/#instantiate-a-promise-of-a-module\" id=\"ref-for-instantiate-a-promise-of-a-module\">instantiating the promise of a module</a> <var>promiseOfModule</var> with imports <var>importObject</var>.</p>"
@@ -21,7 +21,7 @@
2121
{
2222
"name": "compile a potential WebAssembly response",
2323
"href": "https://webassembly.github.io/spec/web-api/#compile-a-potential-webassembly-response",
24-
"html": "To <dfn class=\"dfn-paneled has-dfn-panel\" data-dfn-type=\"dfn\" data-noexport=\"\" id=\"compile-a-potential-webassembly-response\" role=\"button\" aria-expanded=\"false\" tabindex=\"0\">compile a potential WebAssembly response</dfn> with a promise of a <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://fetch.spec.whatwg.org/#response\" id=\"ref-for-response②\">Response</a></code> <var>source</var>, perform the following steps:",
24+
"html": "To <dfn class=\"dfn-paneled has-dfn-panel\" data-dfn-type=\"dfn\" data-noexport=\"\" id=\"compile-a-potential-webassembly-response\" role=\"button\" aria-expanded=\"false\" tabindex=\"0\">compile a potential WebAssembly response</dfn> with a promise of a <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://fetch.spec.whatwg.org/#response\" id=\"ref-for-response②\">Response</a></code> <var>source</var> and <code class=\"idl\"><u class=\"link-error\" data-lt=\"WebAssemblyCompileOptions\" title=\"LINK ERROR: No 'idl' refs found for 'WebAssemblyCompileOptions'.\">WebAssemblyCompileOptions</u></code> <var>options</var>, perform the following steps:",
2525
"rationale": ".algorithm",
2626
"steps": [
2727
{
@@ -63,7 +63,7 @@
6363
"html": "<p>Let <var>stableBytes</var> be a <a data-link-type=\"dfn\" href=\"https://webidl.spec.whatwg.org/#dfn-get-buffer-source-copy\" id=\"ref-for-dfn-get-buffer-source-copy\">copy of the bytes held by the buffer</a> <var>bodyArrayBuffer</var>.</p>"
6464
},
6565
{
66-
"html": "<p><a data-link-type=\"dfn\" href=\"https://webassembly.github.io/spec/js-api/#asynchronously-compile-a-webassembly-module\" id=\"ref-for-asynchronously-compile-a-webassembly-module\">Asynchronously compile the WebAssembly module</a> <var>stableBytes</var> using the <a data-link-type=\"dfn\" href=\"https://html.spec.whatwg.org/multipage/webappapis.html#networking-task-source\" id=\"ref-for-networking-task-source\">networking task source</a> and <a data-link-type=\"dfn\" href=\"https://webidl.spec.whatwg.org/#resolve\" id=\"ref-for-resolve\">resolve</a> <var>returnValue</var> with the result.</p>"
66+
"html": "<p><a data-link-type=\"dfn\" href=\"https://webassembly.github.io/spec/js-api/#asynchronously-compile-a-webassembly-module\" id=\"ref-for-asynchronously-compile-a-webassembly-module\">Asynchronously compile the WebAssembly module</a> <var>stableBytes</var> using the <a data-link-type=\"dfn\" href=\"https://html.spec.whatwg.org/multipage/webappapis.html#networking-task-source\" id=\"ref-for-networking-task-source\">networking task source</a> and <var>options</var> and <a data-link-type=\"dfn\" href=\"https://webidl.spec.whatwg.org/#resolve\" id=\"ref-for-resolve\">resolve</a> <var>returnValue</var> with the result.</p>"
6767
}
6868
]
6969
},

0 commit comments

Comments
 (0)