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

Unified Diff: third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp

Issue 1455673002: Add UseCounter for border-image overriding border-widths (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp b/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
index c72e025e71b6011abc6bfd8bf04bb923ded1f844..2cea06bfeb6c64961db847bbdb3006749953462c 100644
--- a/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
+++ b/third_party/WebKit/Source/core/paint/NinePieceImagePainter.cpp
@@ -5,6 +5,7 @@
#include "config.h"
#include "core/paint/NinePieceImagePainter.h"
+#include "core/frame/UseCounter.h"
#include "core/layout/ImageQualityController.h"
#include "core/layout/LayoutBoxModelObject.h"
#include "core/paint/BoxPainter.h"
@@ -35,6 +36,12 @@ bool NinePieceImagePainter::paint(GraphicsContext* graphicsContext, const Layout
if (!styleImage->canRender(m_layoutObject, style.effectiveZoom()))
return false;
+ if ((style.borderLeftWidth() && style.borderLeft().style() == BNONE)
philipj_slow 2015/11/18 09:28:58 Comment that these conditions are meant to isolate
+ || (style.borderRightWidth() && style.borderRight().style() == BNONE)
+ || (style.borderTopWidth() && style.borderTop().style() == BNONE)
+ || (style.borderBottomWidth() && style.borderBottom().style() == BNONE))
+ UseCounter::count(m_layoutObject.document(), UseCounter::BorderImageWithBorderStyleNone);
+
// FIXME: border-image is broken with full page zooming when tiling has to happen, since the tiling function
// doesn't have any understanding of the zoom that is in effect on the tile.
LayoutRect rectWithOutsets = rect;
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698