mshtml: Add IHTMLCSSStyleDeclaration2::animationName property implementation.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Jacek Caban 2020-06-05 18:29:02 +02:00 committed by Alexandre Julliard
parent 8d40873d02
commit 4b29a69b1b
3 changed files with 26 additions and 4 deletions

View File

@ -340,6 +340,10 @@ typedef struct {
} style_tbl_entry_t;
static const style_tbl_entry_t style_tbl[] = {
{
L"animation-name",
DISPID_IHTMLCSSSTYLEDECLARATION2_ANIMATIONNAME
},
{
backgroundW,
DISPID_IHTMLCSSSTYLEDECLARATION_BACKGROUND,
@ -9749,15 +9753,15 @@ static HRESULT WINAPI HTMLCSSStyleDeclaration2_get_fontFeatureSettings(IHTMLCSSS
static HRESULT WINAPI HTMLCSSStyleDeclaration2_put_animationName(IHTMLCSSStyleDeclaration2 *iface, BSTR v)
{
CSSStyle *This = impl_from_IHTMLCSSStyleDeclaration2(iface);
FIXME("(%p)->(%s)\n", This, debugstr_w(v));
return E_NOTIMPL;
TRACE("(%p)->(%s)\n", This, debugstr_w(v));
return set_style_property(This, STYLEID_ANIMATION_NAME, v);
}
static HRESULT WINAPI HTMLCSSStyleDeclaration2_get_animationName(IHTMLCSSStyleDeclaration2 *iface, BSTR *p)
{
CSSStyle *This = impl_from_IHTMLCSSStyleDeclaration2(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, p);
return get_style_property(This, STYLEID_ANIMATION_NAME, p);
}
static HRESULT WINAPI HTMLCSSStyleDeclaration2_put_animationDuration(IHTMLCSSStyleDeclaration2 *iface, BSTR v)

View File

@ -44,6 +44,7 @@ struct HTMLStyle {
/* NOTE: Make sure to keep in sync with style_tbl in htmlstyle.c */
typedef enum {
STYLEID_ANIMATION_NAME,
STYLEID_BACKGROUND,
STYLEID_BACKGROUND_ATTACHMENT,
STYLEID_BACKGROUND_CLIP,

View File

@ -855,6 +855,23 @@ static void test_css_style_declaration2(IHTMLCSSStyleDeclaration2 *css_style)
ok(hres == S_OK, "get_transform failed: %08x\n", hres);
ok(!lstrcmpW(str, L"none"), "transform = %s\n", wine_dbgstr_w(str));
SysFreeString(str);
str = NULL;
hres = IHTMLCSSStyleDeclaration2_get_animationName(css_style, &str);
ok(hres == S_OK, "get_animationName failed: %08x\n", hres);
ok(!str, "animationName = %s\n", wine_dbgstr_w(str));
SysFreeString(str);
str = SysAllocString(L"none");
hres = IHTMLCSSStyleDeclaration2_put_animationName(css_style, str);
ok(hres == S_OK, "put_animationName failed: %08x\n", hres);
SysFreeString(str);
str = NULL;
hres = IHTMLCSSStyleDeclaration2_get_animationName(css_style, &str);
ok(hres == S_OK, "get_animationName failed: %08x\n", hres);
ok(!lstrcmpW(str, L"none"), "animationName = %s\n", wine_dbgstr_w(str));
SysFreeString(str);
}
static void test_body_style(IHTMLStyle *style)