Changeset 154546 in webkit for trunk/Source/WebCore/rendering/RenderScrollbarPart.cpp
- Timestamp:
- Aug 24, 2013, 9:33:15 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderScrollbarPart.cpp
r154488 r154546 100 100 if (!m_scrollbar->owningRenderer()) 101 101 return; 102 RenderView* renderView = view();102 RenderView* renderView = &view(); 103 103 // FIXME: We are querying layout information but nothing guarantees that it's up-to-date, especially since we are called at style change. 104 104 // FIXME: Querying the style's border information doesn't work on table cells with collapsing borders. … … 118 118 if (!m_scrollbar->owningRenderer()) 119 119 return; 120 RenderView* renderView = view();120 RenderView* renderView = &view(); 121 121 // FIXME: We are querying layout information but nothing guarantees that it's up-to-date, especially since we are called at style change. 122 122 // FIXME: Querying the style's border information doesn't work on table cells with collapsing borders. … … 164 164 m_scrollbar->theme()->invalidatePart(m_scrollbar, m_part); 165 165 else { 166 if (view() ->frameView().isFrameViewScrollCorner(this)) {167 view() ->frameView().invalidateScrollCorner(view()->frameView().scrollCornerRect());166 if (view().frameView().isFrameViewScrollCorner(this)) { 167 view().frameView().invalidateScrollCorner(view().frameView().scrollCornerRect()); 168 168 return; 169 169 }
Note:
See TracChangeset
for help on using the changeset viewer.