// Assert.assertFalse(props.hasAttribute("style:text-underline-style"));
// odt.save(ResourceUtilities.newTestOutputFile("saving-is-possible2.odt"));
// Test3: New ODF 1.2 attribute node should exist
OdfStyle styleNode2 = odt.getStylesDom().getOfficeStyles().getStyle("bug77", OdfStyleFamily.Graphic);
StyleGraphicPropertiesElement propsGrapicElement = OdfElement.findFirstChildNode(StyleGraphicPropertiesElement.class, styleNode2);
Assert.assertTrue("Could not find the attribute svg:opac-capicity. Workaround bug77 did not succeeded!", propsGrapicElement.hasAttribute("svg:stroke-opacity"));
odt.save(ResourceUtilities.newTestOutputFile("saving-is-possible.odt"));
} catch (Exception e) {
LOG.log(Level.SEVERE, e.getMessage(), e);
Assert.fail(e.getMessage());
}