25 Nov
2024
25 Nov
'24
1:24 p.m.
Jacek Caban (@jacek) commented about dlls/mshtml/htmltextnode.c:
.unlink = HTMLDOMNode_unlink };
+static void Text_init_dispex_info(dispex_data_t *info, compat_mode_t mode) +{ + HTMLDOMNode_init_dispex_info(info, mode); + CharacterData_init_dispex_info(info, mode);
It's probably not a big deal, but we should probably still use `IHTMLDOMTextNode*` dispids in legacy modes. We should probably do that only in IE9+ mode. It also seems that `IHTMLDOMTextNode2` could be skipped in IE9+ modes. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6887#note_88816