summaryrefslogtreecommitdiff
path: root/svgio/qa
diff options
context:
space:
mode:
authorXisco Fauli <anistenis@gmail.com>2016-03-03 23:19:01 +0100
committerXisco FaulĂ­ <anistenis@gmail.com>2016-03-03 23:35:11 +0000
commit31e037c348ef0e04393926891617fde1b0051a35 (patch)
tree23d66259eec99cac4071d39be5b5d02e6a325a16 /svgio/qa
parent7df498c828b36259397e2dd2769d99e7f30f7470 (diff)
SVGIO: Check height and width of polypolygoncolor
Change-Id: Ibc5844d4e4a89fae7bbc8d2b854384d0c433500f Reviewed-on: https://gerrit.libreoffice.org/22883 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Xisco FaulĂ­ <anistenis@gmail.com>
Diffstat (limited to 'svgio/qa')
-rw-r--r--svgio/qa/cppunit/SvgImportTest.cxx12
1 files changed, 12 insertions, 0 deletions
diff --git a/svgio/qa/cppunit/SvgImportTest.cxx b/svgio/qa/cppunit/SvgImportTest.cxx
index 365fb013eeb4..3ac20ddf7311 100644
--- a/svgio/qa/cppunit/SvgImportTest.cxx
+++ b/svgio/qa/cppunit/SvgImportTest.cxx
@@ -116,6 +116,8 @@ void Test::checkRectPrimitive(Primitive2DSequence& rPrimitive)
CPPUNIT_ASSERT (pDocument);
assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", "#00cc00"); // rect background color
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "height", "100"); // rect background height
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", "100"); // rect background width
assertXPath(pDocument, "/primitive2D/transform/polypolygonstroke/line", "color", "#ff0000"); // rect stroke color
assertXPath(pDocument, "/primitive2D/transform/polypolygonstroke/line", "width", "3"); // rect stroke width
@@ -174,6 +176,8 @@ void Test::testTdf87309()
CPPUNIT_ASSERT (pDocument);
assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", "#000000");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "height", "100");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", "100");
}
void Test::testFontsizeKeywords()
@@ -324,6 +328,8 @@ void Test::testTdf97543()
CPPUNIT_ASSERT (pDocument);
assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", "#00cc00");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "height", "100");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", "100");
}
void Test::testRGBColor()
@@ -337,6 +343,8 @@ void Test::testRGBColor()
CPPUNIT_ASSERT (pDocument);
assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "color", "#646464");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "height", "100");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor", "width", "100");
}
void Test::testRGBAColor()
@@ -364,7 +372,11 @@ void Test::testTdf97936()
CPPUNIT_ASSERT (pDocument);
assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[1]");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[1]", "height", "50");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[1]", "width", "50");
assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[2]");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[2]", "height", "50");
+ assertXPath(pDocument, "/primitive2D/transform/polypolygoncolor[2]", "width", "50");
}
CPPUNIT_TEST_SUITE_REGISTRATION(Test);