diff --git a/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.2_Eval_Code/S10.4.2.1_A1.js b/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.2_Eval_Code/S10.4.2.1_A1.js index 2bceaa993746e45c53bcfe6de8e849fc0002b481..3ffb2571763c28eee5d41503d5da65ff551bfa71 100644 --- a/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.2_Eval_Code/S10.4.2.1_A1.js +++ b/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.2_Eval_Code/S10.4.2.1_A1.js @@ -4,7 +4,7 @@ /** * @description Strict indirect eval should not leak top level * declarations into the global scope - * @strictOnly + * @onlyStrict */ if (!('foo' in this)) { (1,eval)('"use strict"; var foo = 88;'); diff --git a/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.3_Entering_Function_Code/S10.4.3_A1.js b/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.3_Entering_Function_Code/S10.4.3_A1.js index 2233f0cb98f122afd423dbddbd8e7e285035a59a..70937dec7fc95b5565956be714ba83f239b49d21 100644 --- a/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.3_Entering_Function_Code/S10.4.3_A1.js +++ b/test/suite/sputnik/Conformance/10_Execution_Contexts/10.4_Establishing_An_Execution_Context/10.4.3_Entering_Function_Code/S10.4.3_A1.js @@ -4,7 +4,7 @@ /** * @description When calling a strict anonymous function as a * function, "this" should be bound to undefined. - * @strictOnly + * @onlyStrict */ var that = (function() { return this; })(); diff --git a/test/suite/sputnik/Conformance/11_Expressions/11.4_Unary_Operators/11.4.1_The_delete_Operator/S11.4.1_A5.js b/test/suite/sputnik/Conformance/11_Expressions/11.4_Unary_Operators/11.4.1_The_delete_Operator/S11.4.1_A5.js index 94fe08f2d37282dfa12162c58ca4ba63416b4c07..3627a961aeb51f571060ea58a271f93a19d655c1 100644 --- a/test/suite/sputnik/Conformance/11_Expressions/11.4_Unary_Operators/11.4.1_The_delete_Operator/S11.4.1_A5.js +++ b/test/suite/sputnik/Conformance/11_Expressions/11.4_Unary_Operators/11.4.1_The_delete_Operator/S11.4.1_A5.js @@ -8,7 +8,7 @@ * * @description See if a strict delete returns false when deleting a * non-standard property. - * @strictOnly + * @onlyStrict */ var deleted = 'unassigned'; diff --git a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2.3_A1.js b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2.3_A1.js index f77844a60792e8e9ffc5c1745be6d81fa5fd5ccd..5f9d14204c68100ce0ba59e2e75680649bf26d3f 100644 --- a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2.3_A1.js +++ b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2.3_A1.js @@ -4,7 +4,7 @@ /** * @description check that all poisoning use the [[ThrowTypeError]] * function object. - * @strictOnly + * @onlyStrict */ var poison = Object.getOwnPropertyDescriptor(function() {}, 'caller').get; diff --git a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T1.js b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T1.js index 364b9df9d979c84e19e8e2fb24e3aa0112537f76..86b24fe982cb6d6cb99da862586b400006dd3316 100644 --- a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T1.js +++ b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T1.js @@ -4,6 +4,6 @@ /** * @description check if "caller" poisoning poisons * getOwnPropertyDescriptor too - * @strictOnly + * @onlyStrict */ Object.getOwnPropertyDescriptor(function(){}, 'caller'); diff --git a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T2.js b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T2.js index f5b3062dc9be59eab06deb9451b67bbf58787785..158f34ac19b4e874ce3b102684eadaccded02721 100644 --- a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T2.js +++ b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A6_T2.js @@ -4,6 +4,6 @@ /** * @description check if "arguments" poisoning poisons * getOwnPropertyDescriptor too - * @strictOnly + * @onlyStrict */ Object.getOwnPropertyDescriptor(function(){}, 'arguments'); diff --git a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T1.js b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T1.js index eb76266ae68afac5881bd9596b1cb357364623e4..eceb3fa74b3aeadfcbe2ab365e7a1f099384949f 100644 --- a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T1.js +++ b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T1.js @@ -4,7 +4,7 @@ /** * @description check if "caller" poisoning poisons * hasOwnProperty too - * @strictOnly + * @onlyStrict */ (function(){}).hasOwnProperty('caller'); diff --git a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T2.js b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T2.js index 9c12447831ac8da8f6dd4cb27c4da17251dd1656..67bedb2a151f740617dd5d09b15d367c051bcc0b 100644 --- a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T2.js +++ b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A7_T2.js @@ -4,7 +4,7 @@ /** * @description check if "arguments" poisoning poisons * hasOwnProperty too - * @strictOnly + * @onlyStrict */ (function(){}).hasOwnProperty('arguments'); diff --git a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T1.js b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T1.js index 597b7a496450f7820345a0e63e7bb817e28b1f68..49b4d4b47ab0bc0c900b01c83d00a3e7cb05d204 100644 --- a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T1.js +++ b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T1.js @@ -4,7 +4,7 @@ /** * @description check if "caller" poisoning poisons * "in" too - * @strictOnly + * @onlyStrict */ 'caller' in function() {}; diff --git a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T2.js b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T2.js index fb8582f7f36dd964c975a2ac2d2ce82ad31bb10a..007096a78223d578827560333d8061468d6b089a 100644 --- a/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T2.js +++ b/test/suite/sputnik/Conformance/13_Function_Definition/13.2_Creating_Function_Objects/S13.2_A8_T2.js @@ -4,7 +4,7 @@ /** * @description check if "arguments" poisoning poisons * "in" too - * @strictOnly + * @onlyStrict */ 'arguments' in function() {}; diff --git a/test/suite/sputnik/Conformance/15_Native/15.2_Object_Objects/15.2.3_Properties_of_the_Object_Constructor/15.2.3.4_Object.getOwnPropertyNames/S15.2.3.4_A1_T1.js b/test/suite/sputnik/Conformance/15_Native/15.2_Object_Objects/15.2.3_Properties_of_the_Object_Constructor/15.2.3.4_Object.getOwnPropertyNames/S15.2.3.4_A1_T1.js index ca8d66bf803d65d5592d644576ab9ae3cc74dd1e..c12649f5a8c314fdf4443cb7f59b9e7fd2f20dfd 100644 --- a/test/suite/sputnik/Conformance/15_Native/15.2_Object_Objects/15.2.3_Properties_of_the_Object_Constructor/15.2.3.4_Object.getOwnPropertyNames/S15.2.3.4_A1_T1.js +++ b/test/suite/sputnik/Conformance/15_Native/15.2_Object_Objects/15.2.3_Properties_of_the_Object_Constructor/15.2.3.4_Object.getOwnPropertyNames/S15.2.3.4_A1_T1.js @@ -8,7 +8,7 @@ * @description Check that all the own property names reported by * Object.getOwnPropertyNames on a strict function are names that * hasOwnProperty agrees are own properties. - * @strictOnly + * @onlyStrict */ function foo() {}