Lines Matching refs:dnow
189 var dnow = new Date();
190 testEqual(dnow, dnow);
191 testEqual(dnow, String(dnow));
192 testNotEqual(dnow, Number(dnow));
196 dnow.toString = null;
197 testEqual(dnow, Number(dnow));
198 dnow.valueOf = function () { return "42"; };
199 testEqual(dnow, 42);
200 dnow.toString = function () { return "1"; };
201 testEqual(dnow, true);