aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-8gs.js
diff options
context:
space:
mode:
authorDavid Fugate <dfugate@microsoft.com>2011-11-04 12:46:23 -0700
committerDavid Fugate <dfugate@microsoft.com>2011-11-04 12:46:23 -0700
commit4e74861ccb3b6c98e13e24b81e3fe9c19ac6f743 (patch)
tree7f65fe8213b269757ed8648ff32513fc00c07f75 /external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-8gs.js
parent43b58c99d018886955fd76f15d0078d1652ccf19 (diff)
Updated Microsoft's test262 contributions reflecting the IE10 PPB4 update to IE Test Center.
77 new (mostly) strict mode tests plus the removal of one invalid test case. Sputnik and IE Test Center tests now live side-by-side in ch* directories under test/suite.
Diffstat (limited to 'external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-8gs.js')
-rw-r--r--external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-8gs.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-8gs.js b/external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-8gs.js
new file mode 100644
index 000000000..847c13ab2
--- /dev/null
+++ b/external/contributions/Microsoft/ietcLatest/TestCases/ch13/13.1/13.1-8gs.js
@@ -0,0 +1,9 @@
+/**
+ * @path ch13/13.1/13.1-8gs.js
+ * @description Strict Mode - SyntaxError is thrown if a FunctionExpression has two identical parameters
+ * @onlyStrict
+ * @negative ^((?!NotEarlyError).)*$
+ */
+"use strict";
+throw NotEarlyError;
+var _13_1_8_fun = function (param, param) { }; \ No newline at end of file