summaryrefslogtreecommitdiff
path: root/test/dump_computed.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-07-04 12:59:37 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-07-04 12:59:37 +0000
commit2f5753d607a93c8ae18aab3dd675b111af7d879d (patch)
treef9c2f35073806f433a1520ec2d64cbbcb2d9fc1d /test/dump_computed.h
parent39a51ce203672ead9e526592f4d35bdef5e5c728 (diff)
downloadlibcss-2f5753d607a93c8ae18aab3dd675b111af7d879d.tar.gz
libcss-2f5753d607a93c8ae18aab3dd675b111af7d879d.tar.bz2
Query client for initial values of color, font-family, quotes, and voice-family properties.
svn path=/trunk/libcss/; revision=8306
Diffstat (limited to 'test/dump_computed.h')
-rw-r--r--test/dump_computed.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/dump_computed.h b/test/dump_computed.h
index 56a818c..a9e2d88 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -1149,9 +1149,6 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_FONT_FAMILY_MONOSPACE:
wrote = snprintf(ptr, *len, " monospace\n");
break;
- case CSS_FONT_FAMILY_DEFAULT:
- wrote = snprintf(ptr, *len, " default\n");
- break;
}
ptr += wrote;
*len -= wrote;
@@ -1902,9 +1899,6 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_QUOTES_NONE:
wrote = snprintf(ptr, *len, "quotes: none\n");
break;
- case CSS_QUOTES_DEFAULT:
- wrote = snprintf(ptr, *len, "quotes: default\n");
- break;
}
}
ptr += wrote;