jscript: Added Date_setTime implementation.
This commit is contained in:
parent
c144859b13
commit
c0af3a57c2
|
@ -310,8 +310,33 @@ static HRESULT Date_getTimezoneOffset(DispatchEx *dispex, LCID lcid, WORD flags,
|
||||||
static HRESULT Date_setTime(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
static HRESULT Date_setTime(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||||
VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
|
VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller)
|
||||||
{
|
{
|
||||||
FIXME("\n");
|
VARIANT v;
|
||||||
return E_NOTIMPL;
|
HRESULT hres;
|
||||||
|
DateInstance *date;
|
||||||
|
|
||||||
|
TRACE("\n");
|
||||||
|
|
||||||
|
if(!is_class(dispex, JSCLASS_DATE)) {
|
||||||
|
FIXME("throw TypeError\n");
|
||||||
|
return E_FAIL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!arg_cnt(dp)) {
|
||||||
|
if(retv) num_set_nan(retv);
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
hres = to_number(dispex->ctx, get_arg(dp, 0), ei, &v);
|
||||||
|
if(FAILED(hres))
|
||||||
|
return hres;
|
||||||
|
|
||||||
|
date = (DateInstance*)dispex;
|
||||||
|
date->time = time_clip(num_val(&v));
|
||||||
|
|
||||||
|
if(retv)
|
||||||
|
num_set_val(retv, date->time);
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT Date_setMiliseconds(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
static HRESULT Date_setMiliseconds(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||||
|
|
|
@ -941,6 +941,10 @@ ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
|
||||||
date = new Date(Infinity);
|
date = new Date(Infinity);
|
||||||
ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
|
ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
|
||||||
|
|
||||||
|
ok(date.setTime(123) === 123, "date.setTime(123) !== 123");
|
||||||
|
ok(date.setTime("123", NaN) === 123, "date.setTime(\"123\") !== 123");
|
||||||
|
ok(isNaN(date.setTime(NaN)), "date.setTime(NaN) is not NaN");
|
||||||
|
|
||||||
ok(typeof(Math.PI) === "number", "typeof(Math.PI) = " + typeof(Math.PI));
|
ok(typeof(Math.PI) === "number", "typeof(Math.PI) = " + typeof(Math.PI));
|
||||||
ok(Math.floor(Math.PI*100) === 314, "Math.PI = " + Math.PI);
|
ok(Math.floor(Math.PI*100) === 314, "Math.PI = " + Math.PI);
|
||||||
Math.PI = "test";
|
Math.PI = "test";
|
||||||
|
|
Loading…
Reference in New Issue