Searched refs:pagination (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/chrome/browser/resources/history/
H A Dhistory_mobile.css25 #results-pagination {
133 #results-pagination button {
H A Dhistory.css53 #results-pagination {
575 body:not(.has-results) #results-pagination {
609 /* Clear the float to ensure that #results-pagination encloses its children. */
610 #results-pagination::after {
/external/chromium_org/chrome/browser/resources/downloads/
H A Ddownloads.css180 #downloads-pagination {
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp911 Pagination pagination; local
913 pagination.mode = Pagination::Unpaginated;
915 pagination.mode = Pagination::LeftToRightPaginated;
917 pagination.mode = Pagination::RightToLeftPaginated;
919 pagination.mode = Pagination::TopToBottomPaginated;
921 pagination.mode = Pagination::BottomToTopPaginated;
927 pagination.gap = gap;
928 pagination.pageLength = pageLength;
929 page->setPagination(pagination);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderView.cpp177 // pagination information.
186 // Set up the correct pagination offset. We can use a negative offset in order to push the top of the RenderView into its correct place
187 // on a page. We can take the iframe's offset from the logical top of the first page and make the negative into the pagination offset within the child
208 // to propagate here and not just pagination information.
377 return m_frameView->pagination().mode != Pagination::Unpaginated;
386 if (int pageLength = m_frameView->pagination().pageLength)
395 return m_frameView->pagination().behavesLikeColumns ? ColumnInfo::Column : ColumnInfo::Page;
410 if (m_frameView && m_frameView->pagination().mode != Pagination::Unpaginated)
1000 if (int pageLength = m_frameView->pagination().pageLength)
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPage.cpp430 void Page::setPagination(const Pagination& pagination) argument
432 if (m_pagination == pagination)
435 m_pagination = pagination;
H A DPage.h190 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API,
191 // and FrameView::pagination() is set only by CSS. Page::pagination() will affect all
192 // FrameViews in the page cache, but FrameView::pagination() only affects the current
194 const Pagination& pagination() const { return m_pagination; } function in class:WebCore::Page
H A DFrameView.cpp624 Pagination pagination; local
627 setPagination(pagination);
633 pagination.mode = WebCore::paginationModeForRenderStyle(documentOrBodyRenderer->style());
634 pagination.gap = static_cast<unsigned>(documentOrBodyRenderer->style()->columnGap());
637 setPagination(pagination);
902 // If there is any pagination to apply, it will affect the RenderView's style, so we should
2393 const Pagination& FrameView::pagination() const function in class:WebCore::FrameView
2400 return page->pagination();
2406 void FrameView::setPagination(const Pagination& pagination) argument
2408 if (m_pagination == pagination)
[all...]
H A DFrameView.h320 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API,
321 // and FrameView::pagination() is set only by CSS. Page::pagination() will affect all
322 // FrameViews in the page cache, but FrameView::pagination() only affects the current
323 // FrameView. FrameView::pagination() will return m_pagination if it has been set. Otherwise,
324 // it will return Page::pagination() since currently there are no callers that need to
326 const Pagination& pagination() const;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolver.cpp542 const Pagination& pagination = frameView->pagination(); local
543 if (pagination.mode != Pagination::Unpaginated) {
544 Pagination::setStylesForPaginationMode(pagination.mode, documentStyle.get());
545 documentStyle->setColumnGap(pagination.gap);

Completed in 229 milliseconds