diff --git a/fine-itext/src/com/fr/third/v2/lowagie/text/html/simpleparser/FactoryProperties.java b/fine-itext/src/com/fr/third/v2/lowagie/text/html/simpleparser/FactoryProperties.java index cf53266c4..b2e3ccf4f 100644 --- a/fine-itext/src/com/fr/third/v2/lowagie/text/html/simpleparser/FactoryProperties.java +++ b/fine-itext/src/com/fr/third/v2/lowagie/text/html/simpleparser/FactoryProperties.java @@ -140,6 +140,9 @@ public class FactoryProperties { if(props.hasProperty("line-height")){ p.setAttribute("line-height", props.getProperty("line-height")); } + if (props.hasProperty("noexist-attrid")) { + p.setAttribute("noexist-attrid", props.getProperty("noexist-attrid")); + } for(String margin : HtmlConstants.MARGIN){ if(props.hasPropertyInChain("div", margin)){ String ss = props.getPropertyFromChain("div", margin);