OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. | 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); } | 307 const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); } |
308 | 308 |
309 const AtomicString& locateNamespacePrefix( | 309 const AtomicString& locateNamespacePrefix( |
310 const AtomicString& namespaceURI) const; | 310 const AtomicString& namespaceURI) const; |
311 | 311 |
312 String nodeName() const override; | 312 String nodeName() const override; |
313 | 313 |
314 Element* cloneElementWithChildren(); | 314 Element* cloneElementWithChildren(); |
315 Element* cloneElementWithoutChildren(); | 315 Element* cloneElementWithoutChildren(); |
316 | 316 |
| 317 void scheduleSVGFilterLayerUpdateHack(); |
| 318 |
317 void setBooleanAttribute(const QualifiedName&, bool); | 319 void setBooleanAttribute(const QualifiedName&, bool); |
318 | 320 |
319 virtual const StylePropertySet* additionalPresentationAttributeStyle() { | 321 virtual const StylePropertySet* additionalPresentationAttributeStyle() { |
320 return nullptr; | 322 return nullptr; |
321 } | 323 } |
322 void invalidateStyleAttribute(); | 324 void invalidateStyleAttribute(); |
323 | 325 |
324 const StylePropertySet* inlineStyle() const { | 326 const StylePropertySet* inlineStyle() const { |
325 return elementData() ? elementData()->m_inlineStyle.get() : nullptr; | 327 return elementData() ? elementData()->m_inlineStyle.get() : nullptr; |
326 } | 328 } |
(...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1155 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 1157 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
1156 static T* create(const QualifiedName&, Document&) | 1158 static T* create(const QualifiedName&, Document&) |
1157 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 1159 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
1158 T* T::create(const QualifiedName& tagName, Document& document) { \ | 1160 T* T::create(const QualifiedName& tagName, Document& document) { \ |
1159 return new T(tagName, document); \ | 1161 return new T(tagName, document); \ |
1160 } | 1162 } |
1161 | 1163 |
1162 } // namespace blink | 1164 } // namespace blink |
1163 | 1165 |
1164 #endif // Element_h | 1166 #endif // Element_h |
OLD | NEW |