Skip to content

Commit

Permalink
Need to catch exceptions to report them
Browse files Browse the repository at this point in the history
Now that the default semantics are to throw, we need to be more explicit about catching.
  • Loading branch information
annevk committed Nov 9, 2020
1 parent 66d6037 commit 52f7a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dom.bs
Original file line number Diff line number Diff line change
Expand Up @@ -3247,7 +3247,7 @@ run these steps:

<li><p>If <var>records</var> <a for=queue>is not empty</a>, then <a spec=webidl>invoke</a>
<var>mo</var>'s <a for=MutationObserver>callback</a> with « <var>records</var>, <var>mo</var> »,
and <var>mo</var>. If this throws an exception, then <a>report the exception</a>.
and <var>mo</var>. If this throws an exception, catch it, and <a>report the exception</a>.
</ol>

<li><p><a for=set>For each</a> <var>slot</var> of <var>signalSet</var>, <a>fire an event</a>
Expand Down

0 comments on commit 52f7a52

Please sign in to comment.