}
public boolean isSkipWhenCollapsingMargins() {
// An anonymous block will already have its children provided to it
for (Iterator i = getInlineContent().iterator(); i.hasNext(); ) {
Styleable styleable = (Styleable)i.next();
CalculatedStyle style = styleable.getStyle();
if (! (style.isFloated() || style.isAbsolute() || style.isFixed() || style.isRunning())) {
return false;
}
}
return true;