| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); } | 309 const AtomicString& namespaceURI() const { return m_tagName.namespaceURI(); } |
| 310 | 310 |
| 311 const AtomicString& locateNamespacePrefix( | 311 const AtomicString& locateNamespacePrefix( |
| 312 const AtomicString& namespaceURI) const; | 312 const AtomicString& namespaceURI) const; |
| 313 | 313 |
| 314 String nodeName() const override; | 314 String nodeName() const override; |
| 315 | 315 |
| 316 Element* cloneElementWithChildren(); | 316 Element* cloneElementWithChildren(); |
| 317 Element* cloneElementWithoutChildren(); | 317 Element* cloneElementWithoutChildren(); |
| 318 | 318 |
| 319 void scheduleSVGFilterLayerUpdateHack(); | |
| 320 | |
| 321 void setBooleanAttribute(const QualifiedName&, bool); | 319 void setBooleanAttribute(const QualifiedName&, bool); |
| 322 | 320 |
| 323 virtual const StylePropertySet* additionalPresentationAttributeStyle() { | 321 virtual const StylePropertySet* additionalPresentationAttributeStyle() { |
| 324 return nullptr; | 322 return nullptr; |
| 325 } | 323 } |
| 326 void invalidateStyleAttribute(); | 324 void invalidateStyleAttribute(); |
| 327 | 325 |
| 328 const StylePropertySet* inlineStyle() const { | 326 const StylePropertySet* inlineStyle() const { |
| 329 return elementData() ? elementData()->m_inlineStyle.get() : nullptr; | 327 return elementData() ? elementData()->m_inlineStyle.get() : nullptr; |
| 330 } | 328 } |
| (...skipping 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1159 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 1157 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 1160 static T* create(const QualifiedName&, Document&) | 1158 static T* create(const QualifiedName&, Document&) |
| 1161 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 1159 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 1162 T* T::create(const QualifiedName& tagName, Document& document) { \ | 1160 T* T::create(const QualifiedName& tagName, Document& document) { \ |
| 1163 return new T(tagName, document); \ | 1161 return new T(tagName, document); \ |
| 1164 } | 1162 } |
| 1165 | 1163 |
| 1166 } // namespace blink | 1164 } // namespace blink |
| 1167 | 1165 |
| 1168 #endif // Element_h | 1166 #endif // Element_h |
| OLD | NEW |