Bug 776760 - comment out failing test for known bug 764307 (rs=dmandelin)

--HG--
extra : rebase_source : 5ea9c87610a5242597b002f276ac210bf42c34ab
This commit is contained in:
Luke Wagner 2012-07-25 16:54:13 -07:00
parent 49d155b6fc
commit 471399e224

View File

@ -42,8 +42,9 @@ assertEq(otherGetProto(other.otherObj), other.otherProto);
other.evaluate("var newOtherProto = { newOtherProto: 1 }; " +
"otherObj.__proto__ = newOtherProto;");
assertEq(otherGetProto(other.otherObj), other.newOtherProto);
Math.sin();
assertEq(getProto(other.otherObj), other.newOtherProto);
// TODO This assertion fails due to bug 764307
//assertEq(getProto(other.otherObj), other.newOtherProto);
/******************************************************************************/