Skip to content

Commit

Permalink
go with the approach Peter preferred
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Jun 7, 2022
1 parent dd8bbaf commit 21450b2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -94923,7 +94923,7 @@ dictionary <dfn dictionary>ErrorEventInit</dfn> : <span>EventInit</span> {
USVString filename = "";
unsigned long lineno = 0;
unsigned long colno = 0;
any error;
any error = undefined;
};</code></pre>

<p>The <dfn attribute for="ErrorEvent"><code data-x="dom-ErrorEvent-message">message</code></dfn>
Expand All @@ -94943,9 +94943,8 @@ dictionary <dfn dictionary>ErrorEventInit</dfn> : <span>EventInit</span> {
error occurred in the script.</p>

<p>The <dfn attribute for="ErrorEvent"><code data-x="dom-ErrorEvent-error">error</code></dfn>
attribute must return the value it was initialized to. It must initially be initialized to
undefined. Where appropriate, it is set to the object representing the error (e.g., the exception
object in the case of an uncaught exception).</p>
attribute must return the value it was initialized to. Where appropriate, it is set to the object
representing the error (e.g., the exception object in the case of an uncaught DOM exception).</p>

</div>

Expand Down

0 comments on commit 21450b2

Please sign in to comment.