Home | History | Annotate | Download | only in rendering

Lines Matching refs:layoutState

26 #include "core/rendering/LayoutState.h"
129 // Returns true if layoutState should be used for its cached offset and clip.
131 LayoutState* layoutState() const { return m_layoutState; }
135 // FIXME: LayoutState should be enabled for other repaint containers than the RenderView. crbug.com/363834
185 void pushLayoutState(LayoutState&);
223 LayoutState* m_layoutState;
234 // Suspends the LayoutState cached offset and clipRect optimization. Used under transforms
235 // that cannot be represented by LayoutState (common in SVG) and when manipulating the render
237 // moves its list marker around). Note that even when disabled, LayoutState is still used to
244 , m_didDisable(m_view.layoutState() && m_view.layoutState()->cachedOffsetsEnabled())
246 if (m_view.layoutState())
247 m_view.layoutState()->m_cachedOffsetsEnabled = false;
249 m_layoutState = m_view.layoutState();
255 ASSERT(m_view.layoutState() == m_layoutState);
257 m_view.layoutState()->m_cachedOffsetsEnabled = true;
263 LayoutState* m_layoutState;