HomeSort by relevance Sort by last modified time
    Searched defs:RenderRegion (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRegion.h 45 class RenderRegion : public RenderBlock {
47 explicit RenderRegion(Element*, RenderFlowThread*);
90 // These methods represent the width and height of a "page" and for a RenderRegion they are just the
159 virtual const char* renderName() const { return "RenderRegion"; }
185 // If this RenderRegion is displayed as part of another named flow,
218 inline RenderRegion* toRenderRegion(RenderObject* object)
221 return static_cast<RenderRegion*>(object);
224 inline const RenderRegion* toRenderRegion(const RenderObject* object)
227 return static_cast<const RenderRegion*>(object);
231 void toRenderRegion(const RenderRegion*);
    [all...]
RenderRegion.cpp 31 #include "core/rendering/RenderRegion.h"
44 RenderRegion::RenderRegion(Element* element, RenderFlowThread* flowThread)
55 LayoutUnit RenderRegion::pageLogicalWidth() const
61 LayoutUnit RenderRegion::pageLogicalHeight() const
73 LayoutUnit RenderRegion::maxPageLogicalHeight() const
80 LayoutUnit RenderRegion::logicalHeightOfAllFlowThreadContent() const
90 LayoutRect RenderRegion::flowThreadPortionOverflowRect() const
95 LayoutRect RenderRegion::overflowRectForFlowThreadPortion(const LayoutRect& flowThreadPortionRect, bool isFirstPortion, bool isLastPortion) const
99 // FIXME: Would like to just use hasOverflowClip() but we aren't a block yet. When RenderRegion is eliminated an
    [all...]

Completed in 35 milliseconds