summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Persch <chpe@gnome.org>2012-02-06 20:53:56 +0100
committerChristian Persch <chpe@gnome.org>2012-02-06 20:53:56 +0100
commit70f7dede593450dc2efcacbc9f536b8da66fe5f7 (patch)
treeb499ef16d897de1d28c7f5d527296489c5968ce0 /tests
parent20abafc41733870cf97cbec1fa5a8f44295f307c (diff)
downloadlibrsvg-70f7dede593450dc2efcacbc9f536b8da66fe5f7.tar.gz
tests: Use type attribute on <style>2.35.2
Diffstat (limited to 'tests')
-rw-r--r--tests/fixtures/styles/bug614643.svg2
-rw-r--r--tests/fixtures/styles/bug614704.svg2
-rw-r--r--tests/fixtures/styles/order.svg2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/fixtures/styles/bug614643.svg b/tests/fixtures/styles/bug614643.svg
index 1916bdcd..450129f2 100644
--- a/tests/fixtures/styles/bug614643.svg
+++ b/tests/fixtures/styles/bug614643.svg
@@ -3,7 +3,7 @@
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="5cm" height="2.5cm" viewBox="0 0 1000 500"
xmlns="http://www.w3.org/2000/svg" version="1.1">
- <style format="text/css">
+ <style type="text/css">
rect, path {
fill: red;
stroke: red;
diff --git a/tests/fixtures/styles/bug614704.svg b/tests/fixtures/styles/bug614704.svg
index 22a2b147..c3a60999 100644
--- a/tests/fixtures/styles/bug614704.svg
+++ b/tests/fixtures/styles/bug614704.svg
@@ -3,7 +3,7 @@
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="5cm" height="2.5cm" viewBox="0 0 1000 500"
xmlns="http://www.w3.org/2000/svg" version="1.1">
- <style format="text/css">
+ <style type="text/css">
.blue { fill: blue; }
</style>
<rect fill="red" class="blue" id="blue-rect" x="200" y="100" width="600" height="400"/>
diff --git a/tests/fixtures/styles/order.svg b/tests/fixtures/styles/order.svg
index aa6938bd..416f190b 100644
--- a/tests/fixtures/styles/order.svg
+++ b/tests/fixtures/styles/order.svg
@@ -3,7 +3,7 @@
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="5cm" height="2.5cm" viewBox="0 0 1000 500"
xmlns="http://www.w3.org/2000/svg" version="1.1">
- <style format="text/css">
+ <style type="text/css">
rect { fill: black; }
.blue { fill: blue; }
#green { fill: green; }