OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 4 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 } | 166 } |
167 | 167 |
168 bool SVGImageElement::selfHasRelativeLengths() const | 168 bool SVGImageElement::selfHasRelativeLengths() const |
169 { | 169 { |
170 return m_x->currentValue()->isRelative() | 170 return m_x->currentValue()->isRelative() |
171 || m_y->currentValue()->isRelative() | 171 || m_y->currentValue()->isRelative() |
172 || m_width->currentValue()->isRelative() | 172 || m_width->currentValue()->isRelative() |
173 || m_height->currentValue()->isRelative(); | 173 || m_height->currentValue()->isRelative(); |
174 } | 174 } |
175 | 175 |
176 LayoutObject* SVGImageElement::createLayoutObject(const LayoutStyle&) | 176 LayoutObject* SVGImageElement::createLayoutObject(const ComputedStyle&) |
177 { | 177 { |
178 return new LayoutSVGImage(this); | 178 return new LayoutSVGImage(this); |
179 } | 179 } |
180 | 180 |
181 bool SVGImageElement::haveLoadedRequiredResources() | 181 bool SVGImageElement::haveLoadedRequiredResources() |
182 { | 182 { |
183 return !m_needsLoaderURIUpdate && !imageLoader().hasPendingActivity(); | 183 return !m_needsLoaderURIUpdate && !imageLoader().hasPendingActivity(); |
184 } | 184 } |
185 | 185 |
186 void SVGImageElement::attach(const AttachContext& context) | 186 void SVGImageElement::attach(const AttachContext& context) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 return AtomicString(hrefString()); | 221 return AtomicString(hrefString()); |
222 } | 222 } |
223 | 223 |
224 void SVGImageElement::didMoveToNewDocument(Document& oldDocument) | 224 void SVGImageElement::didMoveToNewDocument(Document& oldDocument) |
225 { | 225 { |
226 imageLoader().elementDidMoveToNewDocument(); | 226 imageLoader().elementDidMoveToNewDocument(); |
227 SVGGraphicsElement::didMoveToNewDocument(oldDocument); | 227 SVGGraphicsElement::didMoveToNewDocument(oldDocument); |
228 } | 228 } |
229 | 229 |
230 } // namespace blink | 230 } // namespace blink |
OLD | NEW |