mshtml.idl: Added HTMLStyleElement coclass declaration.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Jacek Caban 2017-04-20 16:23:45 +02:00 committed by Alexandre Julliard
parent 8d467a4bd0
commit 91c568bc6d
2 changed files with 19 additions and 2 deletions

View File

@ -33,14 +33,14 @@
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
typedef struct {
struct HTMLStyleElement {
HTMLElement element;
IHTMLStyleElement IHTMLStyleElement_iface;
nsIDOMHTMLStyleElement *nsstyle;
IHTMLStyleSheet *style_sheet;
} HTMLStyleElement;
};
static inline HTMLStyleElement *impl_from_IHTMLStyleElement(IHTMLStyleElement *iface)
{

View File

@ -19720,6 +19720,23 @@ methods:
BSTR media();
}
/*****************************************************************************
* HTMLStyleElement coclass
*/
[
noncreatable,
uuid(3050f37d-98b5-11cf-bb82-00aa00bdce0b)
]
coclass HTMLStyleElement
{
[default] dispinterface DispHTMLStyleElement;
/* [source, default] dispinterface HTMLStyleElementEvents; */
/* [source] dispinterface HTMLStyleElementEvents2; */
WINE_HTMLELEMENT_INTERFACES;
interface IHTMLStyleElement;
/* interface IHTMLStyleElement2; */
}
/*****************************************************************************
* IHTMLStorage interface
*/