Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(772)

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 1835843002: WIP: Fix foreignObject cullrect Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Dirk Mueller <mueller@kde.org> 5 * 2000 Dirk Mueller <mueller@kde.org>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 7 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) 8 * (C) 2006 Alexey Proskuryakov (ap@nypop.com)
9 * Copyright (C) 2009 Google Inc. All rights reserved. 9 * Copyright (C) 2009 Google Inc. All rights reserved.
10 * 10 *
(...skipping 2315 matching lines...) Expand 10 before | Expand all | Expand 10 after
2326 2326
2327 if (!cornerStyle) { 2327 if (!cornerStyle) {
2328 // If we have an owning ipage/LocalFrame element, then it can set th e custom scrollbar also. 2328 // If we have an owning ipage/LocalFrame element, then it can set th e custom scrollbar also.
2329 if (LayoutPart* layoutObject = m_frame->ownerLayoutObject()) 2329 if (LayoutPart* layoutObject = m_frame->ownerLayoutObject())
2330 cornerStyle = layoutObject->getUncachedPseudoStyle(PseudoStyleRe quest(PseudoIdScrollbarCorner), layoutObject->style()); 2330 cornerStyle = layoutObject->getUncachedPseudoStyle(PseudoStyleRe quest(PseudoIdScrollbarCorner), layoutObject->style());
2331 } 2331 }
2332 } 2332 }
2333 2333
2334 if (cornerStyle) { 2334 if (cornerStyle) {
2335 if (!m_scrollCorner) 2335 if (!m_scrollCorner)
2336 m_scrollCorner = LayoutScrollbarPart::createAnonymous(doc); 2336 m_scrollCorner = LayoutScrollbarPart::createAnonymous(doc, this);
2337 m_scrollCorner->setStyleWithWritingModeOfParent(cornerStyle.release()); 2337 m_scrollCorner->setStyleWithWritingModeOfParent(cornerStyle.release());
2338 setScrollCornerNeedsPaintInvalidation(); 2338 setScrollCornerNeedsPaintInvalidation();
2339 } else if (m_scrollCorner) { 2339 } else if (m_scrollCorner) {
2340 m_scrollCorner->destroy(); 2340 m_scrollCorner->destroy();
2341 m_scrollCorner = nullptr; 2341 m_scrollCorner = nullptr;
2342 } 2342 }
2343 } 2343 }
2344 2344
2345 Color FrameView::documentBackgroundColor() const 2345 Color FrameView::documentBackgroundColor() const
2346 { 2346 {
(...skipping 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after
4095 return m_hiddenForThrottling && m_crossOriginForThrottling; 4095 return m_hiddenForThrottling && m_crossOriginForThrottling;
4096 } 4096 }
4097 4097
4098 LayoutBox& FrameView::boxForScrollControlPaintInvalidation() const 4098 LayoutBox& FrameView::boxForScrollControlPaintInvalidation() const
4099 { 4099 {
4100 ASSERT(layoutView()); 4100 ASSERT(layoutView());
4101 return *layoutView(); 4101 return *layoutView();
4102 } 4102 }
4103 4103
4104 } // namespace blink 4104 } // namespace blink
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_unittest.cc ('k') | third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698