OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
3 * Copyright (C) 2009 Google, Inc. | 3 * Copyright (C) 2009 Google, Inc. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 LayoutRect localVisualRect() const override { return LayoutRect(); } | 47 LayoutRect localVisualRect() const override { return LayoutRect(); } |
48 FloatRect objectBoundingBox() const override { return FloatRect(); } | 48 FloatRect objectBoundingBox() const override { return FloatRect(); } |
49 FloatRect strokeBoundingBox() const override { return FloatRect(); } | 49 FloatRect strokeBoundingBox() const override { return FloatRect(); } |
50 FloatRect visualRectInLocalSVGCoordinates() const override { | 50 FloatRect visualRectInLocalSVGCoordinates() const override { |
51 return FloatRect(); | 51 return FloatRect(); |
52 } | 52 } |
53 FloatRect localBoundingBoxRectForAccessibility() const final { | 53 FloatRect localBoundingBoxRectForAccessibility() const final { |
54 return FloatRect(); | 54 return FloatRect(); |
55 } | 55 } |
56 | 56 |
| 57 bool hasNonIsolatedBlendingDescendants() const final { return false; } |
| 58 |
57 protected: | 59 protected: |
58 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override; | 60 void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override; |
59 | 61 |
60 private: | 62 private: |
61 SVGGradientElement* gradientElement() const; | 63 SVGGradientElement* gradientElement() const; |
62 }; | 64 }; |
63 | 65 |
64 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGGradientStop, isSVGGradientStop()); | 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGGradientStop, isSVGGradientStop()); |
65 | 67 |
66 } // namespace blink | 68 } // namespace blink |
67 | 69 |
68 #endif // LayoutSVGGradientStop_h | 70 #endif // LayoutSVGGradientStop_h |
OLD | NEW |