Skip to content

Commit 1e7d80c

Browse files
committed
fixup! Add DOMException cause
1 parent 1206482 commit 1e7d80c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.bs

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ urlPrefix: https://tc39.es/ecma262/; spec: ECMA-262
113113
text: CreateIterResultObject; url: sec-createiterresultobject
114114
text: CreateMapIterator; url: sec-createmapiterator
115115
text: CreateMethodProperty; url: sec-createmethodproperty
116+
text: CreateNonEnumerableDataPropertyOrThrow; url: sec-createnonenumerabledatapropertyorthrow
116117
text: CreateSetIterator; url: sec-createsetiterator
117118
text: DefinePropertyOrThrow; url: sec-definepropertyorthrow
118119
text: DetachArrayBuffer; url: sec-detacharraybuffer
@@ -128,7 +129,6 @@ urlPrefix: https://tc39.es/ecma262/; spec: ECMA-262
128129
text: GetMethod; url: sec-getmethod
129130
text: GetValueFromBuffer; url: sec-getvaluefrombuffer
130131
text: IfAbruptRejectPromise; url: sec-ifabruptrejectpromise
131-
text: InstallErrorCause; url: sec-installerrorcause
132132
text: IsArray; url: sec-isarray
133133
text: IsAccessorDescriptor; url: sec-isaccessordescriptor
134134
text: IsCallable; url: sec-iscallable
@@ -14616,7 +14616,7 @@ constructor steps are:
1461614616
1. If |options| is a string, then set [=this=]'s [=DOMException/name=] to |options|.
1461714617
1. Otherwise,
1461814618
1. Set [=this=]'s [=DOMException/name=] to |options|["{{DOMExceptionOptions/name}}"].
14619-
1. Perform [=?=] <a abstract-op>InstallErrorCause</a>([=this=], |options|).
14619+
1. If |options|["cause"] [=map/exists=], then perform <a abstract-op>CreateNonEnumerableDataPropertyOrThrow</a>([=this=], "cause", |options|["cause"]).
1462014620

1462114621
The <dfn attribute for="DOMException"><code>name</code></dfn> getter steps are to return
1462214622
[=this=]'s [=DOMException/name=].

0 commit comments

Comments
 (0)