Commit 926d662e authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Expose IHTMLElement7 to scripts.

parent 097ca893
...@@ -6273,6 +6273,9 @@ void HTMLElement_init_dispex_info(dispex_data_t *info, compat_mode_t mode) ...@@ -6273,6 +6273,9 @@ void HTMLElement_init_dispex_info(dispex_data_t *info, compat_mode_t mode)
dispex_info_add_interface(info, IHTMLElement6_tid, NULL); dispex_info_add_interface(info, IHTMLElement6_tid, NULL);
dispex_info_add_interface(info, IElementTraversal_tid, NULL); dispex_info_add_interface(info, IElementTraversal_tid, NULL);
} }
if(mode >= COMPAT_MODE_IE10)
dispex_info_add_interface(info, IHTMLElement7_tid, NULL);
} }
static const tid_t HTMLElement_iface_tids[] = { static const tid_t HTMLElement_iface_tids[] = {
......
...@@ -42,6 +42,8 @@ sync_test("elem_props", function() { ...@@ -42,6 +42,8 @@ sync_test("elem_props", function() {
test_exposed("addEventListener", v >= 9); test_exposed("addEventListener", v >= 9);
test_exposed("removeEventListener", v >= 9); test_exposed("removeEventListener", v >= 9);
test_exposed("dispatchEvent", v >= 9); test_exposed("dispatchEvent", v >= 9);
test_exposed("msSetPointerCapture", v >= 10);
if (v >= 9) test_exposed("spellcheck", v >= 10);
}); });
sync_test("doc_props", function() { sync_test("doc_props", function() {
......
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