*/
if (textElement.getSVGContext() instanceof SVGTextElementBridge){
SVGTextElementBridge b = (SVGTextElementBridge)textElement.getSVGContext();
GraphicsNode gr = b.createGraphicsNode(ctx, textElement);
TextNode tNode = (TextNode)gr;
b.buildGraphicsNode(ctx, textElement, tNode);
List<?> textRuns = tNode.getTextRuns();
logger.debug("Text runs: " + textRuns);
//Get font size
float fontSize = b.getFontSize();