This commit is contained in:
cpeyer%adobe.com 2006-11-14 23:42:06 +00:00
Родитель 1f39e3a3e1
Коммит 1aa9a0f987
5 изменённых файлов: 10 добавлений и 5 удалений

Просмотреть файл

@ -53,6 +53,6 @@ try {
AddTestCase("accessing private static method outside of the class, RTE #1069",
"ReferenceError: Error #1069",
error);
error.substr(0,27));
test();

Просмотреть файл

@ -55,7 +55,7 @@ try {
AddTestCase("accessing public static method outside of the class, RTE #1069",
"ReferenceError: Error #1069",
error);
error.substr(0,27));
// print( "FAILED, should give run time error : accessing public static method outside of the class" );
test();

Просмотреть файл

@ -53,7 +53,7 @@ try {
AddTestCase("Override Method At Runtime",
"ReferenceError: Error #1037",
error);
error.substr(0,27));
test();

Просмотреть файл

@ -45,7 +45,7 @@ var ATTRS = new Attrs();
AddTestCase("var, empty :", "var, empty ", ATTRS.emptyVar);
AddTestCase("var, public :", "var, public ", ATTRS.pubVar);
var privateVarErr="no error"; try { ATTRS.privVar } catch (e) { privateVarErr=e.toString(); }
AddTestCase("var, private :", "ReferenceError: Error #1069", privateVarErr);
AddTestCase("var, private :", "ReferenceError: Error #1069", privateVarErr.substr(0,27));
//AddTestCase("var, private :", "var, private ", ATTRS.privVar);
AddTestCase("var, static :", "var, static ", ATTRS.getStatVar());
AddTestCase("var, public static :", "var, public static ", ATTRS.getPubStatVar());
@ -57,7 +57,7 @@ AddTestCase("var, static private:", "var, static private", ATTRS.getStatPrivVar(
AddTestCase("func, empty :", "func, empty ", ATTRS.emptyFunc());
AddTestCase("func, public :", "func, public ", ATTRS.pubFunc());
var privFunc="no error"; try { ATTRS.privFunc(); } catch (e) { privFunc=e.toString(); }
AddTestCase("func, private :", "ReferenceError: Error #1069", privateVarErr);
AddTestCase("func, private :", "ReferenceError: Error #1069", privateVarErr.substr(0,27));
//AddTestCase("func, private :", "func, private ", ATTRS.privFunc());
AddTestCase("func, static :", "func, static ", ATTRS.getStatFunc());
AddTestCase("func, public static :", "func, public static ", ATTRS.getPubStatFunc());

Просмотреть файл

@ -0,0 +1,5 @@
e15_8_2_13.Math.pow(Infinity, -1)=Bug 186086 - math.pow(Infinity,-1) and other negative exponents return NaN
e15_8_2_13.Math.pow(-Infinity, -1)=Bug 186086 - math.pow(Infinity,-1) and other negative exponents return NaN
e15_8_2_13.Infinity/Math.pow(-Infinity, -1)=Bug 186086 - math.pow(Infinity,-1) and other negative exponents return NaN
e15_8_2_13.Math.pow(-Infinity, -3)=Bug 186086 - math.pow(Infinity,-1) and other negative exponents return NaN
e15_8_2_13.Math.pow(-Infinity, -2)=Bug 186086 - math.pow(Infinity,-1) and other negative exponents return NaN