Lines Matching refs:undefined
99 // Null and undefined are equal to themselves.
102 testEqual(undefined, undefined);
130 // Null and undefined are equal to each-other, and to nothing else.
131 testEqual(null, undefined);
132 testEqual(undefined, null);
139 testNotEqual(undefined, new Wrapper(undefined));
140 testNotEqual(undefined, 0);
141 testNotEqual(undefined, false);
142 testNotEqual(undefined, "");
143 testNotEqual(undefined, new Object());
204 // Objects compared to other objects, or to null and undefined, are not
226 testNotEqual(badObject, undefined);