| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 bool hasID() const; | 478 bool hasID() const; |
| 479 bool hasClass() const; | 479 bool hasClass() const; |
| 480 const SpaceSplitString& classNames() const; | 480 const SpaceSplitString& classNames() const; |
| 481 | 481 |
| 482 IntSize savedLayerScrollOffset() const; | 482 IntSize savedLayerScrollOffset() const; |
| 483 void setSavedLayerScrollOffset(const IntSize&); | 483 void setSavedLayerScrollOffset(const IntSize&); |
| 484 | 484 |
| 485 ElementAnimations* elementAnimations() const; | 485 ElementAnimations* elementAnimations() const; |
| 486 ElementAnimations& ensureElementAnimations(); | 486 ElementAnimations& ensureElementAnimations(); |
| 487 bool hasAnimations() const; | 487 bool hasAnimations() const; |
| 488 void clearAnimationStyleChange(); |
| 488 | 489 |
| 489 InputMethodContext& inputMethodContext(); | 490 InputMethodContext& inputMethodContext(); |
| 490 bool hasInputMethodContext() const; | 491 bool hasInputMethodContext() const; |
| 491 | 492 |
| 492 void synchronizeAttribute(const AtomicString& localName) const; | 493 void synchronizeAttribute(const AtomicString& localName) const; |
| 493 | 494 |
| 494 MutableStylePropertySet& ensureMutableInlineStyle(); | 495 MutableStylePropertySet& ensureMutableInlineStyle(); |
| 495 void clearMutableInlineStyleIfEmpty(); | 496 void clearMutableInlineStyleIfEmpty(); |
| 496 | 497 |
| 497 void setTabIndex(int); | 498 void setTabIndex(int); |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) | 880 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) |
| 880 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 881 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 881 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ | 882 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ |
| 882 { \ | 883 { \ |
| 883 return adoptRefWillBeNoop(new T(tagName, document)); \ | 884 return adoptRefWillBeNoop(new T(tagName, document)); \ |
| 884 } | 885 } |
| 885 | 886 |
| 886 } // namespace | 887 } // namespace |
| 887 | 888 |
| 888 #endif // Element_h | 889 #endif // Element_h |
| OLD | NEW |