count++;
continue; // Already marked changed.
}
// Value nv = getComputedStyle(elt, null, i);
Value nv = newStyle.getValue(i);
Value ov = null;
if (!style.isNullCascaded(i)) {
ov = style.getValue(i);
if (ov instanceof ComputedValue) {
ov = ((ComputedValue)ov).getCascadedValue();
}
}
if (nv == ov) continue;
if ((nv != null) && (ov != null)) {
if (nv.equals(ov)) continue;
String ovCssText = ov.getCssText();
String nvCssText = nv.getCssText();
if ((nvCssText == ovCssText) ||
((nvCssText != null) && nvCssText.equals(ovCssText)))
continue;
}