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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
LayoutState.h 76 const LayoutSize& layoutDelta() const { return m_layoutDelta; }
RenderView.h 101 // layoutDelta is used transiently during layout to store how far an object has moved from its
103 // If we're doing a full repaint m_layoutState will be 0, but in that case layoutDelta doesn't matter.
104 LayoutSize layoutDelta() const
107 return m_layoutState ? m_layoutState->layoutDelta() : LayoutSize();
122 return (delta.width() == m_layoutState->layoutDelta().width() || m_layoutState->layoutDeltaXSaturated()) && (delta.height() == m_layoutState->layoutDelta().height() || m_layoutState->layoutDeltaYSaturated());
238 // store layoutDelta.

Completed in 550 milliseconds