Commit 32f177ae authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Added execCommand("fontsize") support.

parent f75d1b0c
...@@ -1141,6 +1141,8 @@ static const WCHAR cutW[] = ...@@ -1141,6 +1141,8 @@ static const WCHAR cutW[] =
{'c','u','t',0}; {'c','u','t',0};
static const WCHAR fontnameW[] = static const WCHAR fontnameW[] =
{'f','o','n','t','n','a','m','e',0}; {'f','o','n','t','n','a','m','e',0};
static const WCHAR fontsizeW[] =
{'f','o','n','t','s','i','z','e',0};
static const WCHAR indentW[] = static const WCHAR indentW[] =
{'i','n','d','e','n','t',0}; {'i','n','d','e','n','t',0};
static const WCHAR insertorderedlistW[] = static const WCHAR insertorderedlistW[] =
...@@ -1161,6 +1163,7 @@ static const struct { ...@@ -1161,6 +1163,7 @@ static const struct {
{copyW, IDM_COPY}, {copyW, IDM_COPY},
{cutW, IDM_CUT}, {cutW, IDM_CUT},
{fontnameW, IDM_FONTNAME}, {fontnameW, IDM_FONTNAME},
{fontsizeW, IDM_FONTSIZE},
{indentW, IDM_INDENT}, {indentW, IDM_INDENT},
{insertorderedlistW, IDM_ORDERLIST}, {insertorderedlistW, IDM_ORDERLIST},
{insertunorderedlistW, IDM_UNORDERLIST}, {insertunorderedlistW, IDM_UNORDERLIST},
......
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