Recognize background-color style in wxHtmlWindow.

Just treat it as a synonym for "background" i.e. the same as HTML3 BGCOLOR.

Closes #13173.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70121 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-12-27 01:21:29 +00:00
parent 3e65f74e18
commit c7155388f5

View File

@@ -464,6 +464,7 @@ wxHtmlTag::wxHtmlTag(wxHtmlTag *parent,
{ "width", "WIDTH" }, { "width", "WIDTH" },
{ "vertical-align", "VALIGN" }, { "vertical-align", "VALIGN" },
{ "background", "BGCOLOR" }, { "background", "BGCOLOR" },
{ "background-color", "BGCOLOR" },
}; };
wxHtmlStyleParams styleParams(*this); wxHtmlStyleParams styleParams(*this);