aboutsummaryrefslogtreecommitdiffstats
path: root/HTMLparser.c
diff options
context:
space:
mode:
authorRoland Steiner <rolandsteiner@google.com>2009-05-12 09:16:16 +0200
committerveillard <veillard@redhat.com>2009-05-12 09:16:16 +0200
commit04f8eef8520821ac726833687faee278cdb26c4a (patch)
tree41dc05a05ebc7b6975492fcf8e7ce7722f6a93cd /HTMLparser.c
parent494ed594bdf24809c4401aba4bd947f31aceb679 (diff)
downloadandroid_external_libxml2-04f8eef8520821ac726833687faee278cdb26c4a.tar.gz
android_external_libxml2-04f8eef8520821ac726833687faee278cdb26c4a.tar.bz2
android_external_libxml2-04f8eef8520821ac726833687faee278cdb26c4a.zip
* HTMLparser.c: a broken HTML table attributes initialization,
fixes #581803, by Roland Steiner <rolandsteiner@google.com> Daniel
Diffstat (limited to 'HTMLparser.c')
-rw-r--r--HTMLparser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/HTMLparser.c b/HTMLparser.c
index 24b0fc0f..4d0fe27e 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -606,7 +606,7 @@ static const char* const language_attr[] = { "language", NULL } ;
static const char* const select_content[] = { "optgroup", "option", NULL } ;
static const char* const select_attrs[] = { ATTRS, "name", "size", "multiple", "disabled", "tabindex", "onfocus", "onblur", "onchange", NULL } ;
static const char* const style_attrs[] = { I18N, "media", "title", NULL } ;
-static const char* const table_attrs[] = { ATTRS "summary", "width", "border", "frame", "rules", "cellspacing", "cellpadding", "datapagesize", NULL } ;
+static const char* const table_attrs[] = { ATTRS, "summary", "width", "border", "frame", "rules", "cellspacing", "cellpadding", "datapagesize", NULL } ;
static const char* const table_depr[] = { "align", "bgcolor", NULL } ;
static const char* const table_contents[] = { "caption", "col", "colgroup", "thead", "tfoot", "tbody", "tr", NULL} ;
static const char* const tr_elt[] = { "tr", NULL } ;