Skip to content

Commit 4afacec

Browse files
Merge pull request #339 from relu91/fix_334
Add NotFoundError for consumer algorithms
2 parents dfaed06 + 7411767 commit 4afacec

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,6 +1280,10 @@

The readProperty() method

12801280
Let |interaction| be the value of [[\td]]'s |properties|'s
12811281
|propertyName|.
12821282
li>
1283+
<li>
1284+
If |interaction| is <code>undefinedcode>, reject |promise| with a {{NotFoundError}}
1285+
and abort this steps.
1286+
li>
12831287
<li>
12841288
If |option|'s |formIndex| is defined, let |form| be the
12851289
<a>Forma> associated with |formIndex| in |interaction|'s |forms|
@@ -1452,6 +1456,10 @@

The writeProperty() method

14521456
Let |interaction| be the value of [[\td]]'s |properties|'s
14531457
|propertyName|.
14541458
li>
1459+
<li>
1460+
If |interaction| is <code>undefinedcode>, reject |promise| with a {{NotFoundError}}
1461+
and abort this steps.
1462+
li>
14551463
<li>
14561464
If |option|'s |formIndex| is defined, let |form| be the
14571465
<a>Forma> associated with |formIndex| in |interaction|'s |forms|
@@ -1613,6 +1621,10 @@

The observeProperty() method

16131621
If |subscription|'s [[\form]] is failure, reject |promise| with a
16141622
{{SyntaxError}} and abort these steps.
16151623
li>
1624+
<li>
1625+
If |subscription|'s [[\interaction]] is <code>undefinedcode>, reject |promise| with a {{NotFoundError}}
1626+
and abort this steps.
1627+
li>
16161628
ul>
16171629
li>
16181630
<li>
@@ -1683,6 +1695,10 @@

The invokeAction() method

16831695
Let |interaction| be the value of [[\td]]'s |actions|'s
16841696
|actionName|.
16851697
li>
1698+
<li>
1699+
If |interaction| is <code>undefinedcode>, reject |promise| with a {{NotFoundError}}
1700+
and abort this steps.
1701+
li>
16861702
<li>
16871703
If |option|'s |formIndex| is defined, let |form| be the
16881704
<a>Forma> associated with |formIndex| in |interaction|'s |forms|
@@ -1764,6 +1780,10 @@

The subscribeEvent() method

17641780
If |subscription|'s [[\form]] is failure, reject |promise| with a
17651781
{{SyntaxError}} and abort these steps.
17661782
li>
1783+
<li>
1784+
If |subscription|'s [[\interaction]] is <code>undefinedcode>, reject |promise| with a {{NotFoundError}}
1785+
and abort this steps.
1786+
li>
17671787
ul>
17681788
li>
17691789
<li>

0 commit comments

Comments
 (0)