From 31e037c348ef0e04393926891617fde1b0051a35 Mon Sep 17 00:00:00 2001 From: Xisco Fauli Date: Thu, 3 Mar 2016 23:19:01 +0100 Subject: SVGIO: Check height and width of polypolygoncolor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ibc5844d4e4a89fae7bbc8d2b854384d0c433500f Reviewed-on: https://gerrit.libreoffice.org/22883 Tested-by: Jenkins Reviewed-by: Xisco FaulĂ­ --- svgio/qa/cppunit/SvgImportTest.cxx | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'svgio') 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); -- cgit