Module: wine Branch: master Commit: 71cb0cea7442440cc9ea3cf142255e9c261c01a6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=71cb0cea7442440cc9ea3cf142...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Dec 1 12:55:34 2014 +0100
mshtml: Added "indent" command support to execCommand.
---
dlls/mshtml/htmldoc.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c index edc91e6..7a577d9 100644 --- a/dlls/mshtml/htmldoc.c +++ b/dlls/mshtml/htmldoc.c @@ -1098,6 +1098,8 @@ static HRESULT WINAPI HTMLDocument_clear(IHTMLDocument2 *iface)
static const WCHAR fontnameW[] = {'f','o','n','t','n','a','m','e',0}; +static const WCHAR indentW[] = + {'i','n','d','e','n','t',0}; static const WCHAR insertorderedlistW[] = {'i','n','s','e','r','t','o','r','d','e','r','e','d','l','i','s','t',0}; static const WCHAR insertunorderedlistW[] = @@ -1112,6 +1114,7 @@ static const struct { OLECMDID id; }command_names[] = { {fontnameW, IDM_FONTNAME}, + {indentW, IDM_INDENT}, {insertorderedlistW, IDM_ORDERLIST}, {insertunorderedlistW, IDM_UNORDERLIST}, {outdentW, IDM_OUTDENT},