Index: Source/core/rendering/RenderObject.h |
diff --git a/Source/core/rendering/RenderObject.h b/Source/core/rendering/RenderObject.h |
index d295cc6b18f85dac9df7abf23a948463ee3f2dc7..3036b9eb3f4d19cede4f8b5fed03ccdb18ff3d32 100644 |
--- a/Source/core/rendering/RenderObject.h |
+++ b/Source/core/rendering/RenderObject.h |
@@ -598,6 +598,7 @@ public: |
bool hasOutlineAnnotation() const; |
bool hasOutline() const { return style()->hasOutline() || hasOutlineAnnotation(); } |
+ bool hasOutlineOrBoxShadow() const { return hasOutline() || style()->hasBoxShadow(); } |
// Returns the object containing this one. Can be different from parent for positioned elements. |
// If repaintContainer and repaintContainerSkipped are not null, on return *repaintContainerSkipped |