void RenderNamedFlowFragment::checkRegionStyle() { ASSERT(m_flowThread); bool customRegionStyle = false; // FIXME: Region styling doesn't work for pseudo elements. if (!isPseudoElement()) customRegionStyle = view().document().ensureStyleResolver().checkRegionStyle(generatingElement()); setHasCustomRegionStyle(customRegionStyle); toRenderNamedFlowThread(m_flowThread)->checkRegionsWithStyling(); }
void RenderNamedFlowFragment::checkRegionStyle() { ASSERT(isValid()); bool customRegionStyle = false; // FIXME: Region styling doesn't work for pseudo elements. if (!isPseudoElement()) customRegionStyle = generatingElement()->styleResolver().checkRegionStyle(generatingElement()); setHasCustomRegionStyle(customRegionStyle); downcast<RenderNamedFlowThread>(*m_flowThread).checkRegionsWithStyling(); }
const char* RenderMultiColumnBlock::renderName() const { if (isFloating()) return "RenderMultiColumnBlock (floating)"; if (isOutOfFlowPositioned()) return "RenderMultiColumnBlock (positioned)"; if (isAnonymousBlock()) return "RenderMultiColumnBlock (anonymous)"; // FIXME: Temporary hack while the new generated content system is being implemented. if (isPseudoElement()) return "RenderMultiColumnBlock (generated)"; if (isAnonymous()) return "RenderMultiColumnBlock (generated)"; if (isRelPositioned()) return "RenderMultiColumnBlock (relative positioned)"; return "RenderMultiColumnBlock"; }