| 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 IntSize savedLayerScrollOffset() const; | 470 IntSize savedLayerScrollOffset() const; |
| 471 void setSavedLayerScrollOffset(const IntSize&); | 471 void setSavedLayerScrollOffset(const IntSize&); |
| 472 | 472 |
| 473 ActiveAnimations* activeAnimations() const; | 473 ActiveAnimations* activeAnimations() const; |
| 474 ActiveAnimations& ensureActiveAnimations(); | 474 ActiveAnimations& ensureActiveAnimations(); |
| 475 bool hasActiveAnimations() const; | 475 bool hasActiveAnimations() const; |
| 476 | 476 |
| 477 InputMethodContext& inputMethodContext(); | 477 InputMethodContext& inputMethodContext(); |
| 478 bool hasInputMethodContext() const; | 478 bool hasInputMethodContext() const; |
| 479 | 479 |
| 480 void setPrefix(const AtomicString&, ExceptionState&); | |
| 481 | |
| 482 void synchronizeAttribute(const AtomicString& localName) const; | 480 void synchronizeAttribute(const AtomicString& localName) const; |
| 483 | 481 |
| 484 MutableStylePropertySet& ensureMutableInlineStyle(); | 482 MutableStylePropertySet& ensureMutableInlineStyle(); |
| 485 void clearMutableInlineStyleIfEmpty(); | 483 void clearMutableInlineStyleIfEmpty(); |
| 486 | 484 |
| 487 void setTabIndex(int); | 485 void setTabIndex(int); |
| 488 virtual short tabIndex() const override; | 486 virtual short tabIndex() const override; |
| 489 | 487 |
| 490 virtual void trace(Visitor*) override; | 488 virtual void trace(Visitor*) override; |
| 491 | 489 |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) | 861 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) |
| 864 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 862 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 865 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ | 863 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ |
| 866 { \ | 864 { \ |
| 867 return adoptRefWillBeNoop(new T(tagName, document)); \ | 865 return adoptRefWillBeNoop(new T(tagName, document)); \ |
| 868 } | 866 } |
| 869 | 867 |
| 870 } // namespace | 868 } // namespace |
| 871 | 869 |
| 872 #endif // Element_h | 870 #endif // Element_h |
| OLD | NEW |