else {
if (check(propN, important, specificity)) {
ICSSStyleDeclItem declItem = (ICSSStyleDeclItem) decl.getDeclItemNode(propName).cloneNode(true);
int nValues = declItem.getLength();
for (int j = 0; j < nValues; j++) {
conv.toAbsolute(declItem.item(j));
}
declItem.setPriority(null);
fProperties.put(propN, new CSSQueryDeclarationData(declItem, important, specificity));
}
}