Commit a8b5dc84 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Removed obsolete FIXME comments in tests and add relevant tests.

parent b1773131
......@@ -208,10 +208,13 @@ function argumentsTest() {
return 1;
});
}
/* FIXME: It seems that when function is called as an expression, instance object arguments is not set.
* We currently always set it in Wine. */
argumentsTest();
(function callAsExprTest() {
ok(callAsExprTest.arguments === null, "callAsExprTest.arguments = " + callAsExprTest.arguments);
})(1,2);
tmp = (function() {1;})();
ok(tmp === undefined, "tmp = " + tmp);
tmp = eval("1;");
......
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