summaryrefslogtreecommitdiff
path: root/test
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 /test
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 'test')
-rw-r--r--test/data/select/tests1.dat4
-rw-r--r--test/dump_computed.h3
2 files changed, 3 insertions, 4 deletions
diff --git a/test/data/select/tests1.dat b/test/data/select/tests1.dat
index 09f9ef0..dace3f7 100644
--- a/test/data/select/tests1.dat
+++ b/test/data/select/tests1.dat
@@ -60,7 +60,6 @@ padding-right: 0px
padding-bottom: 0px
padding-left: 0px
position: static
-quotes: none
right: auto
table-layout: auto
text-decoration: none
@@ -135,7 +134,6 @@ padding-right: 0px
padding-bottom: 0px
padding-left: 0px
position: static
-quotes: none
right: auto
table-layout: auto
text-decoration: none
@@ -210,7 +208,6 @@ padding-right: 0px
padding-bottom: 0px
padding-left: 0px
position: static
-quotes: none
right: auto
table-layout: auto
text-decoration: none
@@ -447,7 +444,6 @@ padding-right: 0px
padding-bottom: 0px
padding-left: 0px
position: static
-quotes: none
right: auto
table-layout: auto
text-decoration: none
diff --git a/test/dump_computed.h b/test/dump_computed.h
index a9e2d88..8269b3a 100644
--- a/test/dump_computed.h
+++ b/test/dump_computed.h
@@ -1899,6 +1899,9 @@ static void dump_computed_style(const css_computed_style *style, char *buf,
case CSS_QUOTES_NONE:
wrote = snprintf(ptr, *len, "quotes: none\n");
break;
+ default:
+ wrote = 0;
+ break;
}
}
ptr += wrote;