Changeset 203267 in webkit
- Timestamp:
- Jul 14, 2016, 8:56:51 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 6 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r203266 r203267 1 2016-07-14 Antonio Gomes <tonikitoo@igalia.com> 2 3 [RTL Scrollbars] Frame scrollbars don't move to the right when text direction changes to RTL 4 https://bugs.webkit.org/show_bug.cgi?id=158252 5 6 Reviewed by Myles C. Maxfield. 7 8 * fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement.html: Added. 9 * fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-expected.txt: Added. 10 * fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2.html: Added. 11 * fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2-expected.html: Added. 12 * fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html: Added. 13 * fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement-expected.txt: Added. 14 1 15 2016-07-14 Myles C. Maxfield <mmaxfield@apple.com> 2 16 -
trunk/LayoutTests/TestExpectations
r203266 r203267 974 974 fast/scrolling/rtl-scrollbars-listbox.html [ ImageOnlyFailure ] 975 975 fast/scrolling/rtl-scrollbars-positioned-intersect-scrollbars.html [ ImageOnlyFailure ] 976 fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement.html [ ImageOnlyFailure ] 977 fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2.html [ ImageOnlyFailure ] 978 fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html [ ImageOnlyFailure ] 976 979 977 980 # <a download> does not support Blobs -
trunk/LayoutTests/platform/gtk/TestExpectations
r203160 r203267 2650 2650 fast/scrolling/rtl-scrollbars-listbox.html [ Pass ] 2651 2651 fast/scrolling/rtl-scrollbars-positioned-intersect-scrollbars.html [ Pass ] 2652 fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement.html [ Pass ] 2653 fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2.html [ Pass ] 2654 fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html [ Pass ] 2652 2655 2653 2656 # https://bugs.webkit.org/show_bug.cgi?id=156612 -
trunk/LayoutTests/platform/mac-wk2/TestExpectations
r203249 r203267 507 507 [ Sierra+ ] fast/scrolling/rtl-scrollbars-listbox.html [ Pass ] 508 508 [ Sierra+ ] fast/scrolling/rtl-scrollbars-positioned-intersect-scrollbars.html [ Pass ] 509 [ Sierra+ ] fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement.html [ Pass ] 510 [ Sierra+ ] fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2.html [ Pass ] 511 [ Sierra+ ] fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html [ Pass ] 509 512 510 513 # <rdar://problem/25063128> -
trunk/Source/WebCore/ChangeLog
r203266 r203267 1 2016-07-14 Antonio Gomes <tonikitoo@igalia.com> 2 3 [RTL Scrollbars] Frame scrollbars don't move to the right when text direction changes to RTL 4 https://bugs.webkit.org/show_bug.cgi?id=158252 5 6 Reviewed by Myles C. Maxfield. 7 8 When the 'dir' attribute changes either on body or on the document 9 element level, the associated FrameView does not trigger an update on 10 the frame level vertical scrollbar. 11 12 Patch adds a 'hook' so that RenderBox::styleDidChange can call in 13 order to get the document level scrollbar placed properly in the next 14 layout. 15 16 Test: fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement.html 17 fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2.html 18 fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html 19 20 * page/FrameView.cpp: 21 (WebCore::FrameView::topContentDirectionDidChange): 22 * page/FrameView.h: 23 * rendering/RenderBox.cpp: 24 (WebCore::RenderBox::styleDidChange): 25 1 26 2016-07-14 Myles C. Maxfield <mmaxfield@apple.com> 2 27 -
trunk/Source/WebCore/page/FrameView.cpp
r202439 r203267 320 320 m_firstVisuallyNonEmptyLayoutCallbackPending = true; 321 321 m_viewportIsStable = true; 322 m_needsDeferredScrollbarsUpdate = false; 322 323 m_maintainScrollPositionAnchor = nullptr; 323 324 } … … 1127 1128 tiledBacking->setTopContentInset(newTopContentInset); 1128 1129 } 1130 1131 void FrameView::topContentDirectionDidChange() 1132 { 1133 m_needsDeferredScrollbarsUpdate = true; 1134 } 1135 1136 void FrameView::handleDeferredScrollbarsUpdateAfterDirectionChange() 1137 { 1138 if (!m_needsDeferredScrollbarsUpdate) 1139 return; 1140 1141 m_needsDeferredScrollbarsUpdate = false; 1142 1143 ASSERT(m_layoutPhase == InPostLayerPositionsUpdatedAfterLayout); 1144 updateScrollbars(scrollPosition()); 1145 positionScrollbarLayers(); 1146 } 1129 1147 1130 1148 bool FrameView::hasCompositedContent() const … … 1479 1497 1480 1498 handleDeferredScrollUpdateAfterContentSizeChange(); 1499 1500 handleDeferredScrollbarsUpdateAfterDirectionChange(); 1481 1501 1482 1502 if (document.hasListenerType(Document::OVERFLOWCHANGED_LISTENER)) -
trunk/Source/WebCore/page/FrameView.h
r202445 r203267 505 505 void topContentInsetDidChange(float newTopContentInset); 506 506 507 void topContentDirectionDidChange(); 508 507 509 WEBCORE_EXPORT void willStartLiveResize() override; 508 510 WEBCORE_EXPORT void willEndLiveResize() override; … … 658 660 void sendResizeEventIfNeeded(); 659 661 662 void handleDeferredScrollbarsUpdateAfterDirectionChange(); 663 660 664 void updateScrollableAreaSet(); 661 665 … … 772 776 773 777 bool m_viewportIsStable { true }; 778 779 bool m_needsDeferredScrollbarsUpdate { false }; 774 780 775 781 RefPtr<ContainerNode> m_maintainScrollPositionAnchor; -
trunk/Source/WebCore/rendering/RenderBox.cpp
r203252 r203267 402 402 } 403 403 setNeedsLayoutAndPrefWidthsRecalc(); 404 405 view().frameView().topContentDirectionDidChange(); 404 406 } 405 407
Note:
See TracChangeset
for help on using the changeset viewer.