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

/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderView.cpp189 // pagination information.
198 // 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
199 // 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
220 // to propagate here and not just pagination information.
319 if (int pageLength = frameView()->pagination().pageLength)
379 return m_frameView->pagination().mode != Pagination::Unpaginated;
388 if (int pageLength = m_frameView->pagination().pageLength)
397 return m_frameView->pagination().behavesLikeColumns ? ColumnInfo::Column : ColumnInfo::Page;
410 if (m_frameView && m_frameView->pagination().mode != Pagination::Unpaginated)
1070 // The idea here is to take into account what object is moving the pagination poin
[all...]
H A DRenderBox.cpp315 const Pagination& pagination = frame()->view()->pagination(); local
316 if (viewChangedWritingMode && pagination.mode != Pagination::Unpaginated) {
317 viewStyle->setColumnStylesFromPaginationMode(pagination.mode);
4287 // We will paginate as long as we don't scroll overflow in the pagination direction.
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DWebPage.cpp1398 Pagination pagination = m_page->pagination(); local
1399 pagination.mode = static_cast<Pagination::Mode>(mode);
1400 m_page->setPagination(pagination);
1405 Pagination pagination = m_page->pagination(); local
1406 pagination.behavesLikeColumns = behavesLikeColumns;
1407 m_page->setPagination(pagination);
1412 Pagination pagination = m_page->pagination(); local
1419 Pagination pagination = m_page->pagination(); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/testing/
H A DInternals.cpp883 Pagination pagination; local
885 pagination.mode = Pagination::Unpaginated;
887 pagination.mode = Pagination::LeftToRightPaginated;
889 pagination.mode = Pagination::RightToLeftPaginated;
891 pagination.mode = Pagination::TopToBottomPaginated;
893 pagination.mode = Pagination::BottomToTopPaginated;
899 pagination.gap = gap;
900 pagination.pageLength = pageLength;
901 page->setPagination(pagination);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebView.mm2893 Pagination pagination = page->pagination();
2896 pagination.mode = Pagination::Unpaginated;
2899 pagination.mode = Pagination::LeftToRightPaginated;
2902 pagination.mode = Pagination::RightToLeftPaginated;
2905 pagination.mode = Pagination::TopToBottomPaginated;
2908 pagination.mode = Pagination::BottomToTopPaginated;
2914 page->setPagination(pagination);
2923 switch (page->pagination().mode) {
2972 Pagination pagination
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DFrameView.cpp696 Pagination pagination; local
699 setPagination(pagination);
705 pagination.mode = WebCore::paginationModeForRenderStyle(documentOrBodyRenderer->style());
706 pagination.gap = static_cast<unsigned>(documentOrBodyRenderer->style()->columnGap());
709 setPagination(pagination);
1186 // If there is any pagination to apply, it will affect the RenderView's style, so we should
2998 const Pagination& FrameView::pagination() const function in class:WebCore::FrameView
3005 return page->pagination();
3011 void FrameView::setPagination(const Pagination& pagination) argument
3013 if (m_pagination == pagination)
[all...]
H A DPage.cpp893 void Page::setPagination(const Pagination& pagination) argument
895 if (m_pagination == pagination)
898 m_pagination = pagination;
H A DPage.h287 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API,
288 // and FrameView::pagination() is set only by CSS. Page::pagination() will affect all
289 // FrameViews in the page cache, but FrameView::pagination() only affects the current
291 const Pagination& pagination() const { return m_pagination; } function in class:WebCore::Page
H A DFrameView.h303 // some enclosing view with auto-pagination, no call happens to resize the view. The new pagination model
305 // resize around that view. Auto-pagination uses the bounds of the actual view that's being printed to determine
314 // We can eventually move Mail to a newer SPI that would let them opt in to the layout-time pagination model,
386 // Page and FrameView both store a Pagination value. Page::pagination() is set only by API,
387 // and FrameView::pagination() is set only by CSS. Page::pagination() will affect all
388 // FrameViews in the page cache, but FrameView::pagination() only affects the current
389 // FrameView. FrameView::pagination() will return m_pagination if it has been set. Otherwise,
390 // it will return Page::pagination() sinc
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleResolver.cpp859 const Pagination& pagination = frameView->pagination(); local
860 if (pagination.mode != Pagination::Unpaginated) {
861 documentStyle->setColumnStylesFromPaginationMode(pagination.mode);
862 documentStyle->setColumnGap(pagination.gap);
1450 // FIXME: Once we implement pagination controls, overflow-x should default to hidden
1457 // Call setStylesForPaginationMode() if a pagination mode is set for any non-root elements. If these

Completed in 266 milliseconds