summaryrefslogtreecommitdiff
path: root/src/select/properties.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-07-04 13:21:28 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-07-04 13:21:28 +0000
commit3b1a80cbb138c9c714efc0f32729506060c78c81 (patch)
tree344f832111f5dab566ed59b39ef65e42cac30cbc /src/select/properties.c
parent2f5753d607a93c8ae18aab3dd675b111af7d879d (diff)
downloadlibcss-3b1a80cbb138c9c714efc0f32729506060c78c81.tar.gz
libcss-3b1a80cbb138c9c714efc0f32729506060c78c81.tar.bz2
Move quotes property into common style block.
svn path=/trunk/libcss/; revision=8307
Diffstat (limited to 'src/select/properties.c')
-rw-r--r--src/select/properties.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/select/properties.c b/src/select/properties.c
index c607bf0..cb9ed02 100644
--- a/src/select/properties.c
+++ b/src/select/properties.c
@@ -4126,9 +4126,7 @@ css_error compose_quotes(const css_computed_style *parent,
css_error error;
lwc_string **quotes = NULL;
- if ((child->uncommon == NULL && parent->uncommon != NULL) ||
- css_computed_quotes(child, &quotes) ==
- CSS_QUOTES_INHERIT) {
+ if (css_computed_quotes(child, &quotes) == CSS_QUOTES_INHERIT) {
uint8_t p = css_computed_quotes(parent, &quotes);
size_t n_quotes = 0;
lwc_string **copy = NULL;