Commit 271049ca authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added IHTMLStyleSheetsCollection::get_length implementation.

parent ebd918eb
...@@ -144,8 +144,15 @@ static HRESULT WINAPI HTMLStyleSheetsCollection_get_length(IHTMLStyleSheetsColle ...@@ -144,8 +144,15 @@ static HRESULT WINAPI HTMLStyleSheetsCollection_get_length(IHTMLStyleSheetsColle
long *p) long *p)
{ {
HTMLStyleSheetsCollection *This = HTMLSTYLESHEETSCOL_THIS(iface); HTMLStyleSheetsCollection *This = HTMLSTYLESHEETSCOL_THIS(iface);
FIXME("(%p)->(%p)\n", This, p); PRUint32 len = 0;
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, p);
if(This->nslist)
nsIDOMStyleSheetList_GetLength(This->nslist, &len);
*p = len;
return S_OK;
} }
static HRESULT WINAPI HTMLStyleSheetsCollection_get__newEnum(IHTMLStyleSheetsCollection *iface, static HRESULT WINAPI HTMLStyleSheetsCollection_get__newEnum(IHTMLStyleSheetsCollection *iface,
......
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