Commit 6ab3ed7c authored by Andreas Maier's avatar Andreas Maier Committed by Alexandre Julliard

jscript_test: Simple test for Enumerator().

parent 6630bc40
...@@ -58,6 +58,8 @@ testNoEnumerables("Function"); ...@@ -58,6 +58,8 @@ testNoEnumerables("Function");
testNoEnumerables("Function.prototype"); testNoEnumerables("Function.prototype");
testNoEnumerables("testNoEnumerates"); testNoEnumerables("testNoEnumerates");
testNoEnumerables("VBArray"); testNoEnumerables("VBArray");
testNoEnumerables("new Enumerator([])");
testNoEnumerables("Enumerator([])");
ok(Object.propertyIsEnumerable("prototype") === false, "Object.prototype is enumerable"); ok(Object.propertyIsEnumerable("prototype") === false, "Object.prototype is enumerable");
ok(Math.propertyIsEnumerable("E") === false, "Math.E is enumerable"); ok(Math.propertyIsEnumerable("E") === false, "Math.E is enumerable");
...@@ -341,6 +343,8 @@ ok(tmp === "[object Object]", "toString.call(this) = " + tmp); ...@@ -341,6 +343,8 @@ ok(tmp === "[object Object]", "toString.call(this) = " + tmp);
ok(tmp === "[object Object]", "toString.call(arguments) = " + tmp); ok(tmp === "[object Object]", "toString.call(arguments) = " + tmp);
tmp = Object.prototype.toString.call(new VBArray(createArray())); tmp = Object.prototype.toString.call(new VBArray(createArray()));
ok(tmp === "[object Object]", "toString.call(new VBArray()) = " + tmp); ok(tmp === "[object Object]", "toString.call(new VBArray()) = " + tmp);
(tmp = new Enumerator([])).f = Object.prototype.toString;
ok(tmp.f() === "[object Object]", "tmp.f() = " + tmp.f());
function TSTestConstr() {} function TSTestConstr() {}
TSTestConstr.prototype = { toString: function() { return "test"; } }; TSTestConstr.prototype = { toString: function() { return "test"; } };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment