jscript: Added String_anchor implementation.
This commit is contained in:
parent
0a0731ed45
commit
ecfa129d66
|
@ -201,8 +201,10 @@ static HRESULT do_attribute_tag_format(DispatchEx *dispex, LCID lcid, WORD flags
|
|||
static HRESULT String_anchor(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
|
||||
{
|
||||
FIXME("\n");
|
||||
return E_NOTIMPL;
|
||||
static const WCHAR fontW[] = {'A',0};
|
||||
static const WCHAR colorW[] = {'N','A','M','E',0};
|
||||
|
||||
return do_attribute_tag_format(dispex, lcid, flags, dp, retv, ei, sp, fontW, colorW);
|
||||
}
|
||||
|
||||
static HRESULT String_big(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||
|
|
|
@ -269,6 +269,19 @@ ok(tmp === "TEST", "''.toUpperCase() = " + tmp);
|
|||
tmp = "tEsT".toUpperCase(3);
|
||||
ok(tmp === "TEST", "''.toUpperCase(3) = " + tmp);
|
||||
|
||||
tmp = "".anchor();
|
||||
ok(tmp === "<A NAME=\"undefined\"></A>", "''.anchor() = " + tmp);
|
||||
tmp = "".anchor(3);
|
||||
ok(tmp === "<A NAME=\"3\"></A>", "''.anchor(3) = " + tmp);
|
||||
tmp = "".anchor("red");
|
||||
ok(tmp === "<A NAME=\"red\"></A>", "''.anchor('red') = " + tmp);
|
||||
tmp = "test".anchor();
|
||||
ok(tmp === "<A NAME=\"undefined\">test</A>", "'test'.anchor() = " + tmp);
|
||||
tmp = "test".anchor(3);
|
||||
ok(tmp === "<A NAME=\"3\">test</A>", "'test'.anchor(3) = " + tmp);
|
||||
tmp = "test".anchor("green");
|
||||
ok(tmp === "<A NAME=\"green\">test</A>", "'test'.anchor('green') = " + tmp);
|
||||
|
||||
tmp = "".big();
|
||||
ok(tmp === "<BIG></BIG>", "''.big() = " + tmp);
|
||||
tmp = "".big(3);
|
||||
|
|
Loading…
Reference in New Issue