summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Tests/delete-globalThis-property-crash.js
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-04-26 19:03:23 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-26 19:05:08 +0200
commit2778d077e598c2ab6ee4a464699065a16b4da45d (patch)
tree50c4af92c90c386fa0d5e2fb3560305ad5c97422 /Libraries/LibJS/Tests/delete-globalThis-property-crash.js
parentc9c1d1fae01deb1542dbabb2156355c98f704876 (diff)
downloadserenity-2778d077e598c2ab6ee4a464699065a16b4da45d.zip
LibJS: Grow storage when adding a property to uniquely-shaped Object
Normally the storage would be expanded by set_shape() upon transition to a new shape, but if the shape is already unique, there is no new transition so we have to expand the storage manually.
Diffstat (limited to 'Libraries/LibJS/Tests/delete-globalThis-property-crash.js')
-rw-r--r--Libraries/LibJS/Tests/delete-globalThis-property-crash.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/Libraries/LibJS/Tests/delete-globalThis-property-crash.js b/Libraries/LibJS/Tests/delete-globalThis-property-crash.js
new file mode 100644
index 0000000000..246d9debff
--- /dev/null
+++ b/Libraries/LibJS/Tests/delete-globalThis-property-crash.js
@@ -0,0 +1,10 @@
+load("test-common.js");
+
+try {
+ a = 1;
+ assert(delete globalThis.a === true);
+ a = 2;
+ console.log("PASS");
+} catch (e) {
+ console.log("FAIL: " + e);
+}