If a WKView has a header/footer, you cannot scroll to the footer if the page has overflow:hidden on the body. <rdar://problem/13530042>
Created attachment 197668 [details] Patch
Comment on attachment 197668 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=197668&action=review > Source/WebCore/page/FrameView.cpp:614 > + || (m_frame->page() && m_frame->page()->mainFrame() == m_frame && (headerHeight() || footerHeight())); Why don't we have Frame::isMainFrame()? :(
(In reply to comment #2) > (From update of attachment 197668 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=197668&action=review > > > Source/WebCore/page/FrameView.cpp:614 > > + || (m_frame->page() && m_frame->page()->mainFrame() == m_frame && (headerHeight() || footerHeight())); > > Why don't we have Frame::isMainFrame()? :( We REALLY should add this. http://trac.webkit.org/changeset/148234