aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/qtbug_46022.js
diff options
context:
space:
mode:
authorRon Hashimoto <mail@h2so5.net>2015-05-12 11:22:26 +0900
committerLars Knoll <lars.knoll@theqtcompany.com>2015-09-25 08:39:46 +0000
commitc47dacde0ba4a97f5eed9dc345f8c1450000082f (patch)
tree92bd0cfa55acd399c3cb8b451308362b07877925 /tests/auto/qml/qqmlecmascript/data/qtbug_46022.js
parentd5d9c3097a151c774e9da476dc9131b69a7cb03d (diff)
V4: Fix SparseArray::deleteNode
SparseArray::deleteNode should modify size_left only if the deleted node had a right child Change-Id: I0f3504a5c6568dbd9e392bf83eaf3f9780eb2b84 Task-number: QTBUG-46022 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'tests/auto/qml/qqmlecmascript/data/qtbug_46022.js')
-rw-r--r--tests/auto/qml/qqmlecmascript/data/qtbug_46022.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlecmascript/data/qtbug_46022.js b/tests/auto/qml/qqmlecmascript/data/qtbug_46022.js
new file mode 100644
index 0000000000..385d7f9e97
--- /dev/null
+++ b/tests/auto/qml/qqmlecmascript/data/qtbug_46022.js
@@ -0,0 +1,21 @@
+var obj = {}
+obj[5289] = 0
+obj[5290] = 0
+obj[5288] = 0
+obj[5287] = 0
+delete obj[5288]
+
+var a = Object.getOwnPropertyNames(obj)
+var test1 = a.every(function(key) {
+ return obj.hasOwnProperty(key)
+})
+
+obj = {}
+obj[8187] = 0
+obj[8188] = 0
+delete obj[8187]
+
+var b = Object.getOwnPropertyNames(obj)
+var test2 = b.every(function(key) {
+ return obj.hasOwnProperty(key)
+})