| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class ClientRect; | 48 class ClientRect; |
| 49 class ClientRectList; | 49 class ClientRectList; |
| 50 class CustomElementDefinition; | 50 class CustomElementDefinition; |
| 51 class DOMStringMap; | 51 class DOMStringMap; |
| 52 class DOMTokenList; | 52 class DOMTokenList; |
| 53 class Dictionary; | 53 class Dictionary; |
| 54 class ElementRareData; | 54 class ElementRareData; |
| 55 class ElementShadow; | 55 class ElementShadow; |
| 56 class ExceptionState; | 56 class ExceptionState; |
| 57 class Image; | 57 class Image; |
| 58 class InputMethodContext; | |
| 59 class IntSize; | 58 class IntSize; |
| 60 class Locale; | 59 class Locale; |
| 61 class MutableStylePropertySet; | 60 class MutableStylePropertySet; |
| 62 class PropertySetCSSStyleDeclaration; | 61 class PropertySetCSSStyleDeclaration; |
| 63 class PseudoElement; | 62 class PseudoElement; |
| 64 class ScrollState; | 63 class ScrollState; |
| 65 class ScrollToOptions; | 64 class ScrollToOptions; |
| 66 class ShadowRoot; | 65 class ShadowRoot; |
| 67 class StylePropertySet; | 66 class StylePropertySet; |
| 68 | 67 |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 bool hasClass() const; | 482 bool hasClass() const; |
| 484 const SpaceSplitString& classNames() const; | 483 const SpaceSplitString& classNames() const; |
| 485 | 484 |
| 486 IntSize savedLayerScrollOffset() const; | 485 IntSize savedLayerScrollOffset() const; |
| 487 void setSavedLayerScrollOffset(const IntSize&); | 486 void setSavedLayerScrollOffset(const IntSize&); |
| 488 | 487 |
| 489 ElementAnimations* elementAnimations() const; | 488 ElementAnimations* elementAnimations() const; |
| 490 ElementAnimations& ensureElementAnimations(); | 489 ElementAnimations& ensureElementAnimations(); |
| 491 bool hasAnimations() const; | 490 bool hasAnimations() const; |
| 492 | 491 |
| 493 InputMethodContext& inputMethodContext(); | |
| 494 bool hasInputMethodContext() const; | |
| 495 | |
| 496 void synchronizeAttribute(const AtomicString& localName) const; | 492 void synchronizeAttribute(const AtomicString& localName) const; |
| 497 | 493 |
| 498 MutableStylePropertySet& ensureMutableInlineStyle(); | 494 MutableStylePropertySet& ensureMutableInlineStyle(); |
| 499 void clearMutableInlineStyleIfEmpty(); | 495 void clearMutableInlineStyleIfEmpty(); |
| 500 | 496 |
| 501 void setTabIndex(int); | 497 void setTabIndex(int); |
| 502 virtual short tabIndex() const override; | 498 virtual short tabIndex() const override; |
| 503 | 499 |
| 504 void incrementProxyCount(); | 500 void incrementProxyCount(); |
| 505 void decrementProxyCount(); | 501 void decrementProxyCount(); |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) | 877 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) |
| 882 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 878 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 883 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ | 879 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ |
| 884 { \ | 880 { \ |
| 885 return adoptRefWillBeNoop(new T(tagName, document)); \ | 881 return adoptRefWillBeNoop(new T(tagName, document)); \ |
| 886 } | 882 } |
| 887 | 883 |
| 888 } // namespace | 884 } // namespace |
| 889 | 885 |
| 890 #endif // Element_h | 886 #endif // Element_h |
| OLD | NEW |