Jacek Caban : mshtml: Use DISPID_UNKNOWN for compat dispids not supported in compat mode.

Alexandre Julliard julliard at winehq.org
Tue Jun 9 15:27:48 CDT 2020


Module: wine
Branch: master
Commit: b5d0c98857eb4becb7ceafb54bb74c51cad97bad
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=b5d0c98857eb4becb7ceafb54bb74c51cad97bad

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Tue Jun  9 16:15:34 2020 +0200

mshtml: Use DISPID_UNKNOWN for compat dispids not supported in compat mode.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/htmlstyle.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/dlls/mshtml/htmlstyle.c b/dlls/mshtml/htmlstyle.c
index 845eeb1da1..af6a0ce458 100644
--- a/dlls/mshtml/htmlstyle.c
+++ b/dlls/mshtml/htmlstyle.c
@@ -342,7 +342,8 @@ typedef struct {
 static const style_tbl_entry_t style_tbl[] = {
     {
         L"animation-name",
-        DISPID_IHTMLCSSSTYLEDECLARATION2_ANIMATIONNAME
+        DISPID_IHTMLCSSSTYLEDECLARATION2_ANIMATIONNAME,
+        DISPID_UNKNOWN
     },
     {
         backgroundW,
@@ -799,11 +800,13 @@ static const style_tbl_entry_t style_tbl[] = {
     },
     {
         L"transform",
-        DISPID_IHTMLCSSSTYLEDECLARATION2_TRANSFORM
+        DISPID_IHTMLCSSSTYLEDECLARATION2_TRANSFORM,
+        DISPID_UNKNOWN
     },
     {
         L"transition",
-        DISPID_IHTMLCSSSTYLEDECLARATION2_TRANSITION
+        DISPID_IHTMLCSSSTYLEDECLARATION2_TRANSITION,
+        DISPID_UNKNOWN
     },
     {
         vertical_alignW,




More information about the wine-cvs mailing list