mshtml: Added IHTMLStyleSheetRulesCollection::get_length implementation.

This commit is contained in:
Jacek Caban 2007-12-06 12:22:44 +01:00 committed by Alexandre Julliard
parent 4ac1ba130a
commit 23393756dd
1 changed files with 14 additions and 2 deletions

View File

@ -154,8 +154,20 @@ static HRESULT WINAPI HTMLStyleSheetRulesCollection_get_length(IHTMLStyleSheetRu
long *p)
{
HTMLStyleSheetRulesCollection *This = HTMLSTYLERULESCOL_THIS(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
PRUint32 len = 0;
TRACE("(%p)->(%p)\n", This, p);
if(This->nslist) {
nsresult nsres;
nsres = nsIDOMCSSRuleList_GetLength(This->nslist, &len);
if(NS_FAILED(nsres))
ERR("GetLength failed: %08x\n", nsres);
}
*p = len;
return S_OK;
}
static HRESULT WINAPI HTMLStyleSheetRulesCollection_item(IHTMLStyleSheetRulesCollection *iface,