StyleKeyword styleValuePosition = PositionKeywords.ABSOLUTE;
properties.setComputedValue(
StylePropertyDetails.POSITION, styleValuePosition);
StyleInteger styleTopInteger =
styleValueFactory.getInteger(null, 50);
properties.setComputedValue(StylePropertyDetails.TOP, styleTopInteger);
StyleInteger styleLeftInteger =
styleValueFactory.getInteger(null, 25);
properties.setComputedValue(
StylePropertyDetails.LEFT, styleLeftInteger);
Element element = domFactory.createElement();