| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 class CSSStyleDeclaration; | 43 class CSSStyleDeclaration; |
| 44 class ClientRect; | 44 class ClientRect; |
| 45 class ClientRectList; | 45 class ClientRectList; |
| 46 class CustomElementDefinition; | 46 class CustomElementDefinition; |
| 47 class DOMTokenList; | 47 class DOMTokenList; |
| 48 class Document; | 48 class Document; |
| 49 class ElementRareData; | 49 class ElementRareData; |
| 50 class ElementShadow; | 50 class ElementShadow; |
| 51 class ExceptionState; | 51 class ExceptionState; |
| 52 class Image; | 52 class Image; |
| 53 class InputMethodContext; | |
| 54 class IntSize; | 53 class IntSize; |
| 55 class MutableStylePropertySet; | 54 class MutableStylePropertySet; |
| 56 class PropertySetCSSStyleDeclaration; | 55 class PropertySetCSSStyleDeclaration; |
| 57 class PseudoElement; | 56 class PseudoElement; |
| 58 class ShadowRoot; | 57 class ShadowRoot; |
| 59 class StylePropertySet; | 58 class StylePropertySet; |
| 60 | 59 |
| 61 enum SpellcheckAttributeState { | 60 enum SpellcheckAttributeState { |
| 62 SpellcheckAttributeTrue, | 61 SpellcheckAttributeTrue, |
| 63 SpellcheckAttributeFalse, | 62 SpellcheckAttributeFalse, |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 bool hasClass() const; | 264 bool hasClass() const; |
| 266 const SpaceSplitString& classNames() const; | 265 const SpaceSplitString& classNames() const; |
| 267 | 266 |
| 268 IntSize savedLayerScrollOffset() const; | 267 IntSize savedLayerScrollOffset() const; |
| 269 void setSavedLayerScrollOffset(const IntSize&); | 268 void setSavedLayerScrollOffset(const IntSize&); |
| 270 | 269 |
| 271 ActiveAnimations* activeAnimations() const; | 270 ActiveAnimations* activeAnimations() const; |
| 272 ActiveAnimations& ensureActiveAnimations(); | 271 ActiveAnimations& ensureActiveAnimations(); |
| 273 bool hasActiveAnimations() const; | 272 bool hasActiveAnimations() const; |
| 274 | 273 |
| 275 InputMethodContext& inputMethodContext(); | |
| 276 bool hasInputMethodContext() const; | |
| 277 | |
| 278 void synchronizeAttribute(const AtomicString& localName) const; | 274 void synchronizeAttribute(const AtomicString& localName) const; |
| 279 | 275 |
| 280 MutableStylePropertySet& ensureMutableInlineStyle(); | 276 MutableStylePropertySet& ensureMutableInlineStyle(); |
| 281 void clearMutableInlineStyleIfEmpty(); | 277 void clearMutableInlineStyleIfEmpty(); |
| 282 | 278 |
| 283 void setTabIndex(int); | 279 void setTabIndex(int); |
| 284 virtual short tabIndex() const override; | 280 virtual short tabIndex() const override; |
| 285 | 281 |
| 286 String contentEditable() const; | 282 String contentEditable() const; |
| 287 void setContentEditable(const String&, ExceptionState&); | 283 void setContentEditable(const String&, ExceptionState&); |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 static PassRefPtr<T> create(const QualifiedName&, Document&) | 584 static PassRefPtr<T> create(const QualifiedName&, Document&) |
| 589 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 585 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 590 PassRefPtr<T> T::create(const QualifiedName& tagName, Document& document) \ | 586 PassRefPtr<T> T::create(const QualifiedName& tagName, Document& document) \ |
| 591 { \ | 587 { \ |
| 592 return adoptRef(new T(tagName, document)); \ | 588 return adoptRef(new T(tagName, document)); \ |
| 593 } | 589 } |
| 594 | 590 |
| 595 } // namespace | 591 } // namespace |
| 596 | 592 |
| 597 #endif // SKY_ENGINE_CORE_DOM_ELEMENT_H_ | 593 #endif // SKY_ENGINE_CORE_DOM_ELEMENT_H_ |
| OLD | NEW |