jscript: Implement the String.small() method.
This commit is contained in:
parent
edba282951
commit
424a3f3ffe
|
@ -866,8 +866,8 @@ static HRESULT String_slice(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
|
|||
static HRESULT String_small(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
|
||||
{
|
||||
FIXME("\n");
|
||||
return E_NOTIMPL;
|
||||
static const WCHAR smalltagW[] = {'S','M','A','L','L',0};
|
||||
return do_attributeless_tag_format(dispex, lcid, flags, dp, retv, ei, sp, smalltagW);
|
||||
}
|
||||
|
||||
static HRESULT String_split(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||
|
|
|
@ -314,6 +314,15 @@ ok(tmp === "<I>test</I>", "'test'.italics() = " + tmp);
|
|||
tmp = "test".italics(3);
|
||||
ok(tmp === "<I>test</I>", "'test'.italics(3) = " + tmp);
|
||||
|
||||
tmp = "".small();
|
||||
ok(tmp === "<SMALL></SMALL>", "''.small() = " + tmp);
|
||||
tmp = "".small(3);
|
||||
ok(tmp === "<SMALL></SMALL>", "''.small(3) = " + tmp);
|
||||
tmp = "test".small();
|
||||
ok(tmp === "<SMALL>test</SMALL>", "'test'.small() = " + tmp);
|
||||
tmp = "test".small(3);
|
||||
ok(tmp === "<SMALL>test</SMALL>", "'test'.small(3) = " + tmp);
|
||||
|
||||
var arr = new Array();
|
||||
ok(typeof(arr) === "object", "arr () is not object");
|
||||
ok((arr.length === 0), "arr.length is not 0");
|
||||
|
|
Loading…
Reference in New Issue