summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/seal/abrupt-completion.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Object/seal/abrupt-completion.js31
1 files changed, 31 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Object/seal/abrupt-completion.js b/js/src/tests/test262/built-ins/Object/seal/abrupt-completion.js
new file mode 100644
index 0000000000..46bea02399
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Object/seal/abrupt-completion.js
@@ -0,0 +1,31 @@
+// Copyright (C) 2019 Alexey Shvayka. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-object.seal
+description: >
+ O.[[PreventExtensions]]() returns abrupt completion.
+info: |
+ Object.seal ( O )
+
+ ...
+ 2. Let status be ? SetIntegrityLevel(O, sealed).
+
+ SetIntegrityLevel ( O, level )
+
+ ...
+ 3. Let status be ? O.[[PreventExtensions]]().
+features: [Proxy]
+---*/
+
+var p = new Proxy({}, {
+ preventExtensions: function() {
+ throw new Test262Error();
+ },
+});
+
+assert.throws(Test262Error, function() {
+ Object.seal(p);
+});
+
+reportCompare(0, 0);