diff options
author | André Bargull <andre.bargull@gmail.com> | 2019-11-12 17:02:16 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-12 17:02:16 +0100 |
commit | 899be7cedbef6678280d56a4725f2697f808bbb5 (patch) | |
tree | 3a36479c41d486699379a5ffd420c5b236774616 /js/xpconnect | |
parent | b00601953bade944cd6df9cde6fcdd1f10d76feb (diff) | |
download | uxp-899be7cedbef6678280d56a4725f2697f808bbb5.tar.gz |
Issue #1283 - Implement Promise.prototype.finally()
This resolves #1283.
Diffstat (limited to 'js/xpconnect')
-rw-r--r-- | js/xpconnect/tests/chrome/test_xrayToJS.xul | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/xpconnect/tests/chrome/test_xrayToJS.xul b/js/xpconnect/tests/chrome/test_xrayToJS.xul index 495b996074..38f3f447d8 100644 --- a/js/xpconnect/tests/chrome/test_xrayToJS.xul +++ b/js/xpconnect/tests/chrome/test_xrayToJS.xul @@ -243,7 +243,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=933681 "$`", "$'", Symbol.species]) gPrototypeProperties['Promise'] = - ["constructor", "catch", "then", Symbol.toStringTag]; + ["constructor", "catch", "then", "finally", Symbol.toStringTag]; gConstructorProperties['Promise'] = constructorProps(["resolve", "reject", "all", "race", Symbol.species]); |