Home | History | Annotate | Download | only in resources

Lines Matching refs:property

3 function descriptorShouldBe(object, property, expected) {
4 var test = 'Object.getOwnPropertyDescriptor('+object+", "+property+')';
82 debug("Checking property ordering");
86 for (var property in Object.getOwnPropertyDescriptor(Math, "sin"))
87 shouldBe('property', normalOrder[i++]);
89 for (var property in Object.getOwnPropertyDescriptor(objectWithGetter, "getter"))
90 shouldBe('property', accessorOrder[i++]);
92 for (var property in Object.getOwnPropertyDescriptor(objectWithSetter, "setter"))
93 shouldBe('property', accessorOrder[i++]);
95 for (var property in Object.getOwnPropertyDescriptor(objectWithAccessor, "accessor"))
96 shouldBe('property', accessorOrder[i++]);