| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 bool isPresentationAttribute(const QualifiedName&) const override; | 47 bool isPresentationAttribute(const QualifiedName&) const override; |
| 48 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; | 48 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; |
| 49 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; | 49 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; |
| 50 void svgAttributeChanged(const QualifiedName&) override; | 50 void svgAttributeChanged(const QualifiedName&) override; |
| 51 | 51 |
| 52 bool layoutObjectIsNeeded(const ComputedStyle&) override; | 52 bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 53 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 53 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 54 | 54 |
| 55 bool selfHasRelativeLengths() const override; | 55 bool selfHasRelativeLengths() const override; |
| 56 | 56 |
| 57 RefPtrWillBeMember<SVGAnimatedLength> m_x; | 57 Member<SVGAnimatedLength> m_x; |
| 58 RefPtrWillBeMember<SVGAnimatedLength> m_y; | 58 Member<SVGAnimatedLength> m_y; |
| 59 RefPtrWillBeMember<SVGAnimatedLength> m_width; | 59 Member<SVGAnimatedLength> m_width; |
| 60 RefPtrWillBeMember<SVGAnimatedLength> m_height; | 60 Member<SVGAnimatedLength> m_height; |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace blink | 63 } // namespace blink |
| 64 | 64 |
| 65 #endif // SVGForeignObjectElement_h | 65 #endif // SVGForeignObjectElement_h |
| OLD | NEW |