private TextDecoration getTextDecoration(Element element, GraphicsNode node,
TextDecoration parentTextDecoration, BridgeContext ctx) {
TextDecoration textDecoration = new TextDecoration(parentTextDecoration);
AbstractViewCSS viewCss = CSSUtilities.getViewCSS(element);
CSSOMReadOnlyStyleDeclaration styleDecl = viewCss.getCascadedStyle(element, null);
// determine if text-decoration was explicity set on this element
CSSValue cssVal = styleDecl.getLocalPropertyCSSValue(CSS_TEXT_DECORATION_PROPERTY);
if (cssVal == null) {
// not explicitly set so return the copy of the parent's decoration