Commit 3412e22e authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

jscript: Added String_link implementation.

parent ecfa129d
...@@ -486,8 +486,10 @@ static HRESULT String_lastIndexOf(DispatchEx *dispex, LCID lcid, WORD flags, DIS ...@@ -486,8 +486,10 @@ static HRESULT String_lastIndexOf(DispatchEx *dispex, LCID lcid, WORD flags, DIS
static HRESULT String_link(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp, static HRESULT String_link(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
{ {
FIXME("\n"); static const WCHAR fontW[] = {'A',0};
return E_NOTIMPL; static const WCHAR colorW[] = {'H','R','E','F',0};
return do_attribute_tag_format(dispex, lcid, flags, dp, retv, ei, sp, fontW, colorW);
} }
/* ECMA-262 3rd Edition 15.5.4.10 */ /* ECMA-262 3rd Edition 15.5.4.10 */
......
...@@ -356,6 +356,19 @@ ok(tmp === "<I>test</I>", "'test'.italics() = " + tmp); ...@@ -356,6 +356,19 @@ ok(tmp === "<I>test</I>", "'test'.italics() = " + tmp);
tmp = "test".italics(3); tmp = "test".italics(3);
ok(tmp === "<I>test</I>", "'test'.italics(3) = " + tmp); ok(tmp === "<I>test</I>", "'test'.italics(3) = " + tmp);
tmp = "".link();
ok(tmp === "<A HREF=\"undefined\"></A>", "''.link() = " + tmp);
tmp = "".link(3);
ok(tmp === "<A HREF=\"3\"></A>", "''.link(3) = " + tmp);
tmp = "".link("red");
ok(tmp === "<A HREF=\"red\"></A>", "''.link('red') = " + tmp);
tmp = "test".link();
ok(tmp === "<A HREF=\"undefined\">test</A>", "'test'.link() = " + tmp);
tmp = "test".link(3);
ok(tmp === "<A HREF=\"3\">test</A>", "'test'.link(3) = " + tmp);
tmp = "test".link("green");
ok(tmp === "<A HREF=\"green\">test</A>", "'test'.link('green') = " + tmp);
tmp = "".small(); tmp = "".small();
ok(tmp === "<SMALL></SMALL>", "''.small() = " + tmp); ok(tmp === "<SMALL></SMALL>", "''.small() = " + tmp);
tmp = "".small(3); tmp = "".small(3);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment