Changeset 194667 in webkit
- Timestamp:
- Jan 6, 2016, 2:08:43 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r194666 r194667 1 2016-01-06 Simon Fraser <simon.fraser@apple.com> 2 3 [iOS] Revert overflow:hidden on the body affecting viewport scale (r186786) 4 https://bugs.webkit.org/show_bug.cgi?id=152803 5 rdar://problem/22242515 6 7 Reviewed by Tim Horton. 8 9 Keep the tests, but update their expected results. 10 11 * platform/ios-simulator/fast/viewport/ios/width-is-device-width-overflowing-body-overflow-hidden-expected.txt: 12 * platform/ios-simulator/fast/viewport/ios/width-is-device-width-overflowing-body-overflow-hidden-tall-expected.txt: 13 * platform/ios-simulator/fast/viewport/ios/width-is-device-width-overflowing-expected.txt: 14 1 15 2016-01-06 Brent Fulgham <bfulgham@apple.com> 2 16 -
trunk/LayoutTests/platform/ios-simulator/fast/viewport/ios/width-is-device-width-overflowing-body-overflow-hidden-expected.txt
r194129 r194667 1 1 Viewport: width=device-width 2 2 3 scale 5.000003 scale 1.00000 4 4 maxScale 5.00000 5 minScale 5.000006 visibleRect {"left":"0.00000","top":"0.00000","width":" 64.00000","height":"96.00000"}5 minScale 1.00000 6 visibleRect {"left":"0.00000","top":"0.00000","width":"320.00000","height":"480.00000"} 7 7 -
trunk/LayoutTests/platform/ios-simulator/fast/viewport/ios/width-is-device-width-overflowing-body-overflow-hidden-tall-expected.txt
r194129 r194667 1 1 Viewport: width=device-width 2 2 3 scale 1.052633 scale 0.46875 4 4 maxScale 5.00000 5 minScale 1.052636 visibleRect {"left":"0.00000","top":"0.00000","width":" 303.99999","height":"455.99998"}5 minScale 0.46875 6 visibleRect {"left":"0.00000","top":"0.00000","width":"682.66667","height":"1024.00000"} 7 7 -
trunk/LayoutTests/platform/ios-simulator/fast/viewport/ios/width-is-device-width-overflowing-expected.txt
r194129 r194667 1 1 Viewport: width=device-width 2 2 3 scale 0.317463 scale 1.00000 4 4 maxScale 5.00000 5 minScale 0.317466 visibleRect {"left":"0.00000","top":"0.00000","width":" 1007.99997","height":"1511.99995"}5 minScale 1.00000 6 visibleRect {"left":"0.00000","top":"0.00000","width":"320.00000","height":"480.00000"} 7 7 -
trunk/Source/WebCore/ChangeLog
r194666 r194667 1 2016-01-06 Simon Fraser <simon.fraser@apple.com> 2 3 [iOS] Revert overflow:hidden on the body affecting viewport scale (r186786) 4 https://bugs.webkit.org/show_bug.cgi?id=152803 5 rdar://problem/22242515 6 7 Reviewed by Tim Horton. 8 9 You can't assume that if an author uses overflow:hidden on the body, they have no 10 content outside the body that is important. Sites like Google Translate put 11 abspos elements outside the body. 12 13 So revert the change. 14 15 * page/FrameView.cpp: 16 (WebCore::FrameView::contentsSizeRespectingOverflow): Deleted. 17 * page/FrameView.h: 18 1 19 2016-01-06 Brent Fulgham <bfulgham@apple.com> 2 20 -
trunk/Source/WebCore/page/FrameView.cpp
r194496 r194667 647 647 } 648 648 649 IntSize FrameView::contentsSizeRespectingOverflow() const650 {651 RenderView* renderView = this->renderView();652 auto* viewportRenderer = this->viewportRenderer();653 if (!renderView || !is<RenderBox>(viewportRenderer) || !frame().isMainFrame())654 return contentsSize();655 656 ASSERT(frame().view() == this);657 658 FloatRect contentRect = renderView->unscaledDocumentRect();659 RenderBox& viewportRendererBox = downcast<RenderBox>(*viewportRenderer);660 661 if (viewportRendererBox.style().overflowX() == OHIDDEN)662 contentRect.setWidth(std::min<float>(contentRect.width(), viewportRendererBox.frameRect().width()));663 664 if (viewportRendererBox.style().overflowY() == OHIDDEN)665 contentRect.setHeight(std::min<float>(contentRect.height(), viewportRendererBox.frameRect().height()));666 667 if (renderView->hasTransform())668 contentRect = renderView->layer()->currentTransform().mapRect(contentRect);669 670 return IntSize(contentRect.size());671 }672 673 649 void FrameView::applyOverflowToViewport(const RenderElement& renderer, ScrollbarMode& hMode, ScrollbarMode& vMode) 674 650 { -
trunk/Source/WebCore/page/FrameView.h
r194463 r194667 106 106 virtual void updateContentsSize() override; 107 107 108 WEBCORE_EXPORT IntSize contentsSizeRespectingOverflow() const;109 110 108 void layout(bool allowSubtree = true); 111 109 WEBCORE_EXPORT bool didFirstLayout() const; -
trunk/Source/WebKit/mac/ChangeLog
r194559 r194667 1 2016-01-06 Simon Fraser <simon.fraser@apple.com> 2 3 [iOS] Revert overflow:hidden on the body affecting viewport scale (r186786) 4 https://bugs.webkit.org/show_bug.cgi?id=152803 5 rdar://problem/22242515 6 7 Reviewed by Tim Horton. 8 9 * WebView/WebView.mm: 10 (-[WebView _contentsSizeRespectingOverflow]): Keep this function which is used 11 by UIKit, but change the implementation to just return the document size. 12 1 13 2016-01-04 Tim Horton <timothy_horton@apple.com> 2 14 -
trunk/Source/WebKit/mac/WebView/WebView.mm
r194496 r194667 1568 1568 } 1569 1569 1570 // FIXME: This is incorrectly named, and should be removed <rdar://problem/22242515>. 1570 1571 - (NSSize)_contentsSizeRespectingOverflow 1571 1572 { 1572 if (FrameView* view = [self _mainCoreFrame]->view())1573 return view->contentsSizeRespectingOverflow();1574 1575 1573 return [[[[self mainFrame] frameView] documentView] bounds].size; 1576 1574 } -
trunk/Source/WebKit2/ChangeLog
r194665 r194667 1 2016-01-06 Simon Fraser <simon.fraser@apple.com> 2 3 [iOS] Revert overflow:hidden on the body affecting viewport scale (r186786) 4 https://bugs.webkit.org/show_bug.cgi?id=152803 5 rdar://problem/22242515 6 7 Reviewed by Tim Horton. 8 9 You can't assume that if an author uses overflow:hidden on the body, they have no 10 content outside the body that is important. Sites like Google Translate put 11 abspos elements outside the body. 12 13 So revert the change. 14 15 * WebProcess/WebPage/WebPage.cpp: 16 (WebKit::WebPage::mainFrameDidLayout): Go back to using contents size. 17 1 18 2016-01-06 Anders Carlsson <andersca@apple.com> 2 19 -
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp
r194496 r194667 3537 3537 #if PLATFORM(IOS) 3538 3538 if (FrameView* frameView = mainFrameView()) { 3539 IntSize newContentSize = frameView->contentsSize RespectingOverflow();3539 IntSize newContentSize = frameView->contentsSize(); 3540 3540 if (m_viewportConfiguration.setContentsSize(newContentSize)) 3541 3541 viewportConfigurationChanged();
Note:
See TracChangeset
for help on using the changeset viewer.