diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml index af58629310..fb8fc362db 100644 --- a/test/config/excludelist.xml +++ b/test/config/excludelist.xml @@ -123,8 +123,6 @@ https://bugs.ecmascript.org/show_bug.cgi?id=23 - https://bugs.ecmascript.org/show_bug.cgi?id=24 - https://bugs.ecmascript.org/show_bug.cgi?id=25 https://bugs.ecmascript.org/show_bug.cgi?id=30 diff --git a/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js b/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js index 33073d2217..cf91601da8 100644 --- a/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js +++ b/test/suite/sputnik/Conformance/08_Types/8.6_The_Object_Type/8.6.2_Internal_Properties_and_Methods/S8.6.2_A5_T1.js @@ -6,26 +6,26 @@ * @section: 8.6.2, 13.1, 13.2; * @assertion: [[Call]] executes code associated with the object; * @description: Call function-property of object, property defined -* as screen = {touch:function(){count++}}; +* as testScreen = {touch:function(){count++}}; */ this.count=0; -var screen = {touch:function(){count++}}; +var testScreen = {touch:function(){count++}}; ////////////////////////////////////////////////////////////////////////////// //CHECK#1 -screen.touch(); +testScreen.touch(); if (count !==1) { - $ERROR('#1: this.count=0; screen = {touch:function(){count++}}; screen.touch(); count === 1. Actual: ' + (count)); + $ERROR('#1: this.count=0; testScreen = {touch:function(){count++}}; testScreen.touch(); count === 1. Actual: ' + (count)); } // ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// //CHECK#2 -screen['touch'](); +testScreen['touch'](); if (count !==2) { - $ERROR('#2: this.count=0; screen = {touch:function(){count++}}; screen.touch(); screen[\'touch\'](); count === 2. Actual: ' + (count)); + $ERROR('#2: this.count=0; testScreen = {touch:function(){count++}}; testScreen.touch(); testScreen[\'touch\'](); count === 2. Actual: ' + (count)); } // //////////////////////////////////////////////////////////////////////////////