diff options
author | corvid <corvid@lavabit.com> | 2011-10-17 21:19:45 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-10-17 21:19:45 +0000 |
commit | c1bd221b58c88cc58715d9ab3d9af493a5b39cb5 (patch) | |
tree | 6896687d8280e7037a52fdc1dd83619cbc7f13de | |
parent | fd7d2e9a678c76f6f18e9dcf820546e261261421 (diff) |
don't reset table cells to white-space: normal when no nowrap attribute
the value of the property is inherited, and might not be 'normal'
-rw-r--r-- | src/table.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/table.cc b/src/table.cc index d48a0c45..f89e781b 100644 --- a/src/table.cc +++ b/src/table.cc @@ -347,9 +347,6 @@ static void Html_tag_open_table_cell(DilloHtml *html, if (a_Html_get_attr(html, tag, tagsize, "nowrap")) html->styleEngine->setNonCssHint(CSS_PROPERTY_WHITE_SPACE, CSS_TYPE_ENUM, WHITE_SPACE_NOWRAP); - else - html->styleEngine->setNonCssHint(CSS_PROPERTY_WHITE_SPACE, - CSS_TYPE_ENUM, WHITE_SPACE_NORMAL); a_Html_tag_set_align_attr (html, tag, tagsize); |