summaryrefslogtreecommitdiff
path: root/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
diff options
context:
space:
mode:
authorDavid Fugate <dfugate@microsoft.com>2012-02-27 16:45:56 -0800
committerDavid Fugate <dfugate@microsoft.com>2012-02-27 16:45:56 -0800
commitcfb91a29e4729535a1add2d98ecad7370cfafd56 (patch)
tree8c2f81d7554d4e008e022adb87fd2a69f28225ee /external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
parentb523776847e719e358f71ebc86ecbdf51170aa0d (diff)
downloadtest262-cfb91a29e4729535a1add2d98ecad7370cfafd56.tar.gz
https://bugs.ecmascript.org/show_bug.cgi?id=266 and https://bugs.ecmascript.org/show_bug.cgi?id=270 resolved.
Diffstat (limited to 'external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js')
-rw-r--r--external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js b/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
index 462f1baaf..a3e81fafe 100644
--- a/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
+++ b/external/contributions/Microsoft/ietcLatest/TestCases/ch15/15.4/15.4.4/15.4.4.4/15.4.4.4-5-c-i-1.js
@@ -36,10 +36,10 @@ function testcase() {
var hasProperty = newArr.hasOwnProperty("0");
- var instanceOfVerify = typeof newArr[0]==="number";
+ var instanceOfVerify = typeof newArr[0]==="object";
var verifyValue = false;
- verifyValue = newArr[0] === 101;
+ verifyValue = newArr[0] == 101;
var verifyEnumerable = false;
for (var p in newArr) {