Home | History | Annotate | Download | only in kde

Lines Matching refs:true

38 shouldBe("sub.hasOwnProperty('y')","true");
41 shouldBe("sub.hasOwnProperty('x')","true");
55 Class1.prototype.hasClass1 = true;
57 Class2.prototype.hasClass2 = true;
59 Class3.prototype.hasClass3 = true;
62 shouldBe("obj.hasClass1","true");
63 shouldBe("obj.hasClass2","true");
64 shouldBe("obj.hasClass3","true");
66 shouldBe("Class1.prototype.isPrototypeOf(obj)","true");
67 shouldBe("Class2.prototype.isPrototypeOf(obj)","true");
68 shouldBe("Class3.prototype.isPrototypeOf(obj)","true");
73 shouldBe("Class1.prototype.isPrototypeOf(Class2.prototype)","true");
75 shouldBe("Class1.prototype.isPrototypeOf(Class3.prototype)","true");
77 shouldBe("Class2.prototype.isPrototypeOf(Class3.prototype)","true");
86 return true;
99 shouldBe("myfunc.propertyIsEnumerable('someproperty')","true");
101 shouldBe("checkEnumerable(myfunc,'someproperty')","true