mshtml: Added get_style implementation.
This commit is contained in:
parent
1447e6f634
commit
5b1af5b7d1
|
@ -19,6 +19,7 @@ C_SRCS = \
|
|||
htmlinput.c \
|
||||
htmlnode.c \
|
||||
htmlselect.c \
|
||||
htmlstyle.c \
|
||||
htmltextcont.c \
|
||||
htmltextarea.c \
|
||||
install.c \
|
||||
|
|
|
@ -243,8 +243,12 @@ static HRESULT WINAPI HTMLElement_get_parentElement(IHTMLElement *iface, IHTMLEl
|
|||
static HRESULT WINAPI HTMLElement_get_style(IHTMLElement *iface, IHTMLStyle **p)
|
||||
{
|
||||
HTMLElement *This = HTMLELEM_THIS(iface);
|
||||
FIXME("(%p)->(%p)\n", This, p);
|
||||
return E_NOTIMPL;
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, p);
|
||||
|
||||
/* FIXME: Store IHTMLStyle instead of creating a new instance in every call. */
|
||||
*p = HTMLStyle_Create();
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLElement_put_onhelp(IHTMLElement *iface, VARIANT v)
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -329,6 +329,7 @@ void set_document_bscallback(HTMLDocument*,BSCallback*);
|
|||
IHlink *Hlink_Create(void);
|
||||
IHTMLSelectionObject *HTMLSelectionObject_Create(nsISelection*);
|
||||
IHTMLTxtRange *HTMLTxtRange_Create(nsISelection*);
|
||||
IHTMLStyle *HTMLStyle_Create(void);
|
||||
|
||||
void HTMLElement_Create(HTMLDOMNode*);
|
||||
void HTMLBodyElement_Create(HTMLElement*);
|
||||
|
|
Loading…
Reference in New Issue