Resolves: #i125329# Take care of Css selector '*'
(cherry picked from commit f73813d9e0f13e3bdf735f8626dbf540701a1900) Conflicts: svgio/source/svgreader/svgnode.cxx Change-Id: Ifc5df8bed47d69709ef590eced19635b6b9580d0
This commit is contained in:
parent
726172e3eb
commit
e17a730c00
@ -194,6 +194,15 @@ namespace svgio
|
|||||||
|
|
||||||
// check the hierarchy for concatenated patterns of Selectors
|
// check the hierarchy for concatenated patterns of Selectors
|
||||||
fillCssStyleVectorUsingHierarchyAndSelectors(rClassStr, *this, OUString());
|
fillCssStyleVectorUsingHierarchyAndSelectors(rClassStr, *this, OUString());
|
||||||
|
|
||||||
|
// #i125329# find Css selector '*', add as last element if found
|
||||||
|
const SvgStyleAttributes* pNew = getDocument().findGlobalCssStyleAttributes("*");
|
||||||
|
|
||||||
|
if(pNew)
|
||||||
|
{
|
||||||
|
// add CssStyle for selector '*' if found
|
||||||
|
maCssStyleVector.push_back(pNew);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const SvgStyleAttributes* SvgNode::checkForCssStyle(const OUString& rClassStr, const SvgStyleAttributes& rOriginal) const
|
const SvgStyleAttributes* SvgNode::checkForCssStyle(const OUString& rClassStr, const SvgStyleAttributes& rOriginal) const
|
||||||
|
Loading…
x
Reference in New Issue
Block a user