summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorHiroyuki Ikezoe <hiikezoe@gnome.org>2010-04-27 20:49:46 +0900
committerHiroyuki Ikezoe <hiikezoe@gnome.org>2010-04-27 20:49:46 +0900
commitc9a143f29b24e4ae98cab0c115230a47520857a7 (patch)
tree8ddf82931e7b130d61fe00c1e74dbc8add742512 /tests
parent9b5fe34c5d5cf2f8f31bef66d76c345abd0ff01c (diff)
downloadlibrsvg-c9a143f29b24e4ae98cab0c115230a47520857a7.tar.gz
Should commit with 20dd6a3ae7fa5fcddfbcf3bcfc39d8783890135d.
Diffstat (limited to 'tests')
-rw-r--r--tests/fixtures/styles/important.svg13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/fixtures/styles/important.svg b/tests/fixtures/styles/important.svg
new file mode 100644
index 00000000..0259295c
--- /dev/null
+++ b/tests/fixtures/styles/important.svg
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="128" height="128">
+<style type="text/css">
+<![CDATA[
+rect {fill: white !important;}
+.blue {fill: blue !important;}
+#red {fill: red !important;}
+]]>
+</style>
+ <rect class="blue" id="red" x="0" y="0" width="10" height="10"/>
+ <rect class="blue" id="blue" x="20" y="20" width="10" height="10"/>
+ <rect id="white" fill="black !important" x="40" y="40" width="10" height="10"/>
+</svg>