mshtml: Expose IHTMLStyleElement2 to scripts.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
bb1ff33720
commit
4cd257d54d
|
@ -30,6 +30,7 @@
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
#include "mshtml_private.h"
|
#include "mshtml_private.h"
|
||||||
|
#include "mshtmdid.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
|
||||||
|
|
||||||
|
@ -420,6 +421,23 @@ static void HTMLStyleElement_unlink(HTMLDOMNode *iface)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void HTMLStyleElement_init_dispex_info(dispex_data_t *info, compat_mode_t mode)
|
||||||
|
{
|
||||||
|
static const dispex_hook_t ie11_hooks[] = {
|
||||||
|
{DISPID_IHTMLSTYLEELEMENT_READYSTATE, NULL},
|
||||||
|
{DISPID_IHTMLSTYLEELEMENT_STYLESHEET, NULL},
|
||||||
|
{DISPID_UNKNOWN}
|
||||||
|
};
|
||||||
|
|
||||||
|
HTMLElement_init_dispex_info(info, mode);
|
||||||
|
|
||||||
|
dispex_info_add_interface(info, IHTMLStyleElement_tid,
|
||||||
|
mode >= COMPAT_MODE_IE11 ? ie11_hooks : NULL);
|
||||||
|
|
||||||
|
if(mode >= COMPAT_MODE_IE9)
|
||||||
|
dispex_info_add_interface(info, IHTMLStyleElement2_tid, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
static const NodeImplVtbl HTMLStyleElementImplVtbl = {
|
static const NodeImplVtbl HTMLStyleElementImplVtbl = {
|
||||||
&CLSID_HTMLStyleElement,
|
&CLSID_HTMLStyleElement,
|
||||||
HTMLStyleElement_QI,
|
HTMLStyleElement_QI,
|
||||||
|
@ -442,14 +460,13 @@ static const NodeImplVtbl HTMLStyleElementImplVtbl = {
|
||||||
|
|
||||||
static const tid_t HTMLStyleElement_iface_tids[] = {
|
static const tid_t HTMLStyleElement_iface_tids[] = {
|
||||||
HTMLELEMENT_TIDS,
|
HTMLELEMENT_TIDS,
|
||||||
IHTMLStyleElement_tid,
|
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
static dispex_static_data_t HTMLStyleElement_dispex = {
|
static dispex_static_data_t HTMLStyleElement_dispex = {
|
||||||
NULL,
|
NULL,
|
||||||
DispHTMLStyleElement_tid,
|
DispHTMLStyleElement_tid,
|
||||||
HTMLStyleElement_iface_tids,
|
HTMLStyleElement_iface_tids,
|
||||||
HTMLElement_init_dispex_info
|
HTMLStyleElement_init_dispex_info
|
||||||
};
|
};
|
||||||
|
|
||||||
HRESULT HTMLStyleElement_Create(HTMLDocumentNode *doc, nsIDOMElement *nselem, HTMLElement **elem)
|
HRESULT HTMLStyleElement_Create(HTMLDocumentNode *doc, nsIDOMElement *nselem, HTMLElement **elem)
|
||||||
|
|
|
@ -45,6 +45,15 @@ sync_test("elem_props", function() {
|
||||||
test_exposed("dispatchEvent", v >= 9);
|
test_exposed("dispatchEvent", v >= 9);
|
||||||
test_exposed("msSetPointerCapture", v >= 10);
|
test_exposed("msSetPointerCapture", v >= 10);
|
||||||
if (v >= 9) test_exposed("spellcheck", v >= 10);
|
if (v >= 9) test_exposed("spellcheck", v >= 10);
|
||||||
|
|
||||||
|
elem = document.createElement("style");
|
||||||
|
test_exposed("media", true);
|
||||||
|
test_exposed("type", true);
|
||||||
|
test_exposed("disabled", true);
|
||||||
|
test_exposed("media", true);
|
||||||
|
test_exposed("sheet", v >= 9);
|
||||||
|
test_exposed("readyState", v < 11);
|
||||||
|
test_exposed("styleSheet", v < 11);
|
||||||
});
|
});
|
||||||
|
|
||||||
sync_test("doc_props", function() {
|
sync_test("doc_props", function() {
|
||||||
|
|
Loading…
Reference in New Issue