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

  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.h 29 #include "core/rendering/Pagination.h"
187 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API,
188 // and FrameView::pagination() is set only by CSS. Page::pagination() will affect all
189 // FrameViews in the page cache, but FrameView::pagination() only affects the current
191 const Pagination& pagination() const { return m_pagination; } function in class:WebCore::Page
192 void setPagination(const Pagination&);
286 Pagination m_pagination
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 197 page->setPagination(Pagination());
919 Pagination pagination; local
921 pagination.mode = Pagination::Unpaginated;
923 pagination.mode = Pagination::LeftToRightPaginated;
925 pagination.mode = Pagination::RightToLeftPaginated;
927 pagination.mode = Pagination::TopToBottomPaginated
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 129 Pagination::Mode paginationModeForRenderStyle(RenderStyle* style)
133 return Pagination::Unpaginated;
144 return Pagination::LeftToRightPaginated;
145 return Pagination::RightToLeftPaginated;
152 return Pagination::TopToBottomPaginated;
153 return Pagination::BottomToTopPaginated;
641 Pagination pagination; local
644 setPagination(pagination);
650 pagination.mode = WebCore::paginationModeForRenderStyle(documentOrBodyRenderer->style())
2481 const Pagination& FrameView::pagination() const function in class:WebCore::FrameView
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp 1561 const Pagination& pagination = view()->pagination(); local
    [all...]

Completed in 52 milliseconds