Skip to content

Commit e2798e0

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 18.4.7.
1 parent 51b8ce0 commit e2798e0

File tree

13 files changed

+1150
-277
lines changed

13 files changed

+1150
-277
lines changed

ed/algorithms/dbsc.json

Lines changed: 97 additions & 54 deletions
Large diffs are not rendered by default.

ed/algorithms/speech-api.json

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,37 @@
44
"url": "https://webaudio.github.io/web-speech-api/"
55
},
66
"algorithms": [
7+
{
8+
"name": "SpeechRecognition/mode",
9+
"href": "https://webaudio.github.io/web-speech-api/#dom-speechrecognition-mode",
10+
"html": "The setter steps are:",
11+
"rationale": "if",
12+
"steps": [
13+
{
14+
"html": "<p>If the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-length\" id=\"ref-for-dom-speechrecognitionphraselist-length①\">length</a></code> of <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognition-phrases\" id=\"ref-for-dom-speechrecognition-phrases①\">phrases</a></code> is greater than 0\nand the system using the given value for <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognition-mode-slot\" id=\"ref-for-dom-speechrecognition-mode-slot①\">[[mode]]</a></code> does not support contextual biasing,\nthrow a <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionerrorevent\" id=\"ref-for-speechrecognitionerrorevent\">SpeechRecognitionErrorEvent</a></code> with the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionerrorcode-phrases-not-supported\" id=\"ref-for-dom-speechrecognitionerrorcode-phrases-not-supported①\">phrases-not-supported</a></code> error code and abort these steps.</p>"
15+
},
16+
{
17+
"html": "<p>Set <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognition-mode-slot\" id=\"ref-for-dom-speechrecognition-mode-slot②\">[[mode]]</a></code> to the given value.</p>"
18+
}
19+
]
20+
},
21+
{
22+
"name": "SpeechRecognition/phrases",
23+
"href": "https://webaudio.github.io/web-speech-api/#dom-speechrecognition-phrases",
24+
"html": "The setter steps are:",
25+
"rationale": "if",
26+
"steps": [
27+
{
28+
"html": "<p>If the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-length\" id=\"ref-for-dom-speechrecognitionphraselist-length②\">length</a></code> of the given value is greater than 0 and the system does not support contextual biasing,\nthrow a <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionerrorevent\" id=\"ref-for-speechrecognitionerrorevent①\">SpeechRecognitionErrorEvent</a></code> with the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionerrorcode-phrases-not-supported\" id=\"ref-for-dom-speechrecognitionerrorcode-phrases-not-supported②\">phrases-not-supported</a></code> error code and abort these steps.</p>"
29+
},
30+
{
31+
"html": "<p>Set <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognition-phrases-slot\" id=\"ref-for-dom-speechrecognition-phrases-slot①\">[[phrases]]</a></code> to the given value.</p>"
32+
},
33+
{
34+
"html": "<p>Send a copy of <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognition-phrases-slot\" id=\"ref-for-dom-speechrecognition-phrases-slot②\">[[phrases]]</a></code> to the system for initializing or updating the phrases for contextual biasing implementation.</p>"
35+
}
36+
]
37+
},
738
{
839
"name": "SpeechRecognition/start()",
940
"href": "https://webaudio.github.io/web-speech-api/#dom-speechrecognition-start",
@@ -129,6 +160,74 @@
129160
"html": "<p>Once the system is successfully listening to the recognition, queue a task to <a data-link-type=\"dfn\" href=\"https://dom.spec.whatwg.org/#concept-event-fire\" id=\"ref-for-concept-event-fire\">fire an event</a> named <a class=\"idl-code\" data-link-type=\"event\" href=\"https://webaudio.github.io/web-speech-api/#eventdef-speechrecognition-start\" id=\"ref-for-eventdef-speechrecognition-start\">start</a> at <a data-link-type=\"dfn\" href=\"https://webidl.spec.whatwg.org/#this\" id=\"ref-for-this\">this</a>.</p>"
130161
}
131162
]
163+
},
164+
{
165+
"name": "SpeechRecognitionPhrase/SpeechRecognitionPhrase(phrase, boost)",
166+
"href": "https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphrase-speechrecognitionphrase",
167+
"html": "When this constructor is invoked, run the following steps:",
168+
"rationale": "if",
169+
"steps": [
170+
{
171+
"html": "<p>If <var>boost</var> is smaller than 0.0 or greater than 10.0, throw a <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webidl.spec.whatwg.org/#syntaxerror\" id=\"ref-for-syntaxerror②\">SyntaxError</a></code> and abort these steps.</p>"
172+
},
173+
{
174+
"html": "<p>Let <var>phr</var> be a new object of type <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionphrase\" id=\"ref-for-speechrecognitionphrase③\">SpeechRecognitionPhrase</a></code>.</p>"
175+
},
176+
{
177+
"html": "<p>Set <var>phr</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphrase-phrase-slot\" id=\"ref-for-dom-speechrecognitionphrase-phrase-slot\">[[phrase]]</a></code> to be the value of <var>phrase</var>.</p>"
178+
},
179+
{
180+
"html": "<p>Set <var>phr</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphrase-boost-slot\" id=\"ref-for-dom-speechrecognitionphrase-boost-slot\">[[boost]]</a></code> to be the value of <var>boost</var>.</p>"
181+
},
182+
{
183+
"html": "<p>Return <var>phr</var>.</p>"
184+
}
185+
]
186+
},
187+
{
188+
"name": "SpeechRecognitionPhraseList/SpeechRecognitionPhraseList(phrases)",
189+
"href": "https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-speechrecognitionphraselist",
190+
"html": "When this constructor is invoked, run the following steps:",
191+
"rationale": "let",
192+
"steps": [
193+
{
194+
"html": "<p>Let <var>list</var> be a new object of type <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionphraselist\" id=\"ref-for-speechrecognitionphraselist③\">SpeechRecognitionPhraseList</a></code>.</p>"
195+
},
196+
{
197+
"html": "<p>Set <var>list</var>.<code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-phrases-slot\" id=\"ref-for-dom-speechrecognitionphraselist-phrases-slot\">[[phrases]]</a></code> to be the value of <var>phrases</var>.</p>"
198+
},
199+
{
200+
"html": "<p>Return <var>list</var>.</p>"
201+
}
202+
]
203+
},
204+
{
205+
"name": "SpeechRecognitionPhraseList/item(index)",
206+
"href": "https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-item",
207+
"html": "This method gets the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionphrase\" id=\"ref-for-speechrecognitionphrase⑤\">SpeechRecognitionPhrase</a></code> object at the <var>index</var> of the list.\n When invoked, run the following steps:",
208+
"rationale": "if",
209+
"steps": [
210+
{
211+
"html": "<p>If <var>index</var> is smaller than 0, or greater than or equal to <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-length\" id=\"ref-for-dom-speechrecognitionphraselist-length③\">length</a></code>,\nthrow a <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webidl.spec.whatwg.org/#exceptiondef-rangeerror\" id=\"ref-for-exceptiondef-rangeerror\">RangeError</a></code> and abort these steps.</p>"
212+
},
213+
{
214+
"html": "<p>Return the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionphrase\" id=\"ref-for-speechrecognitionphrase⑥\">SpeechRecognitionPhrase</a></code> at the <var>index</var> of <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-phrases-slot\" id=\"ref-for-dom-speechrecognitionphraselist-phrases-slot②\">[[phrases]]</a></code>.</p>"
215+
}
216+
]
217+
},
218+
{
219+
"name": "SpeechRecognitionPhraseList/removeItem(index)",
220+
"href": "https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-removeitem",
221+
"html": "This method removes the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionphrase\" id=\"ref-for-speechrecognitionphrase⑨\">SpeechRecognitionPhrase</a></code> object at the <var>index</var> of the list.\n When invoked, run the following steps:",
222+
"rationale": "if",
223+
"steps": [
224+
{
225+
"html": "<p>If <var>index</var> is smaller than 0, or greater than or equal to <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-length\" id=\"ref-for-dom-speechrecognitionphraselist-length④\">length</a></code>,\nthrow a <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webidl.spec.whatwg.org/#exceptiondef-rangeerror\" id=\"ref-for-exceptiondef-rangeerror①\">RangeError</a></code> and abort these steps.</p>"
226+
},
227+
{
228+
"html": "<p>Remove the <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#speechrecognitionphrase\" id=\"ref-for-speechrecognitionphrase①⓪\">SpeechRecognitionPhrase</a></code> object at the <var>index</var> of <code class=\"idl\"><a data-link-type=\"idl\" href=\"https://webaudio.github.io/web-speech-api/#dom-speechrecognitionphraselist-phrases-slot\" id=\"ref-for-dom-speechrecognitionphraselist-phrases-slot④\">[[phrases]]</a></code>.</p>"
229+
}
230+
]
132231
}
133232
]
134233
}

0 commit comments

Comments
 (0)