aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.3/15.3.5/15.3.5-1gs.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/ch15/15.3/15.3.5/15.3.5-1gs.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/ch15/15.3/15.3.5/15.3.5-1gs.js')
-rw-r--r--external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.3/15.3.5/15.3.5-1gs.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.3/15.3.5/15.3.5-1gs.js b/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.3/15.3.5/15.3.5-1gs.js
new file mode 100644
index 000000000..4166e5abe
--- /dev/null
+++ b/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.3/15.3.5/15.3.5-1gs.js
@@ -0,0 +1,14 @@
+
+
+/**
+ * @path ch15/15.3/15.3.5/15.3.5-1gs.js
+ * @description StrictMode - error is thrown when reading the 'caller' property of a function object
+ * @onlyStrict
+ * @negative NotEarlyError
+ */
+
+"use strict";
+function _15_3_5_1_gs() {}
+throw NotEarlyError;
+_15_3_5_1_gs.caller;
+