-
Bug
-
Resolution: Fixed
-
P3
-
None
-
None
-
b28
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8056552 | emb-9 | Sundararajan Athijegannathan | P3 | Resolved | Fixed | master |
JDK-8064178 | 8u45 | Attila Szegedi | P3 | Resolved | Fixed | b01 |
JDK-8055644 | 8u40 | Attila Szegedi | P3 | Resolved | Fixed | b04 |
JDK-8070415 | emb-8u47 | Attila Szegedi | P3 | Resolved | Fixed | team |
I cloned test262 es5-tests branch under test/script/external and ran "ant clean test262parallel".
test/script/external/test262/test/suite/ch12/12.6/12.6.4/12.6.4-2.js fails with tip.
Copying the test content here for quick reference:
/**
* @path ch12/12.6/12.6.4/12.6.4-2.js
* @description The for-in Statement - the values of [[Enumerable]] attributes are not considered when determining if a property of a prototype object is shadowed by a previous object on the prototype chain
*/
function testcase() {
var proto = {
prop: "enumerableValue"
};
var ConstructFun = function () { };
ConstructFun.prototype = proto;
var child = new ConstructFun();
Object.defineProperty(child, "prop", {
value: "nonEnumerableValue",
enumerable: false
});
var accessedProp = false;
for (var p in child) {
if (p === "prop") {
accessedProp = true;
}
}
return !accessedProp;
}
runTestCase(testcase);
test/script/external/test262/test/suite/ch12/12.6/12.6.4/12.6.4-2.js fails with tip.
Copying the test content here for quick reference:
/**
* @path ch12/12.6/12.6.4/12.6.4-2.js
* @description The for-in Statement - the values of [[Enumerable]] attributes are not considered when determining if a property of a prototype object is shadowed by a previous object on the prototype chain
*/
function testcase() {
var proto = {
prop: "enumerableValue"
};
var ConstructFun = function () { };
ConstructFun.prototype = proto;
var child = new ConstructFun();
Object.defineProperty(child, "prop", {
value: "nonEnumerableValue",
enumerable: false
});
var accessedProp = false;
for (var p in child) {
if (p === "prop") {
accessedProp = true;
}
}
return !accessedProp;
}
runTestCase(testcase);
- backported by
-
JDK-8055644 test/script/external/test262/test/suite/ch12/12.6/12.6.4/12.6.4-2.js fails with tip
-
- Resolved
-
-
JDK-8056552 test/script/external/test262/test/suite/ch12/12.6/12.6.4/12.6.4-2.js fails with tip
-
- Resolved
-
-
JDK-8064178 test/script/external/test262/test/suite/ch12/12.6/12.6.4/12.6.4-2.js fails with tip
-
- Resolved
-
-
JDK-8070415 test/script/external/test262/test/suite/ch12/12.6/12.6.4/12.6.4-2.js fails with tip
-
- Resolved
-
- duplicates
-
JDK-8058954 Nashorn test262 test test/suite/ch12/12.6/12.6.4/12.6.4-2.js fails in 8u31 nightly build
-
- Closed
-