| 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, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e Inc. All rights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013 Appl
e 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 IntSize savedLayerScrollOffset() const; | 519 IntSize savedLayerScrollOffset() const; |
| 520 void setSavedLayerScrollOffset(const IntSize&); | 520 void setSavedLayerScrollOffset(const IntSize&); |
| 521 | 521 |
| 522 ActiveAnimations* activeAnimations() const; | 522 ActiveAnimations* activeAnimations() const; |
| 523 ActiveAnimations* ensureActiveAnimations(); | 523 ActiveAnimations* ensureActiveAnimations(); |
| 524 bool hasActiveAnimations() const; | 524 bool hasActiveAnimations() const; |
| 525 | 525 |
| 526 InputMethodContext* inputMethodContext(); | 526 InputMethodContext* inputMethodContext(); |
| 527 bool hasInputMethodContext() const; | 527 bool hasInputMethodContext() const; |
| 528 | 528 |
| 529 virtual void setPrefix(const AtomicString&, ExceptionState&) OVERRIDE FINAL; | 529 void setPrefix(const AtomicString&, ExceptionState&); |
| 530 | 530 |
| 531 void synchronizeAttribute(const AtomicString& localName) const; | 531 void synchronizeAttribute(const AtomicString& localName) const; |
| 532 | 532 |
| 533 MutableStylePropertySet* ensureMutableInlineStyle(); | 533 MutableStylePropertySet* ensureMutableInlineStyle(); |
| 534 void clearMutableInlineStyleIfEmpty(); | 534 void clearMutableInlineStyleIfEmpty(); |
| 535 | 535 |
| 536 bool needsPseudoElement(PseudoId, const RenderStyle&) const; | 536 bool needsPseudoElement(PseudoId, const RenderStyle&) const; |
| 537 | 537 |
| 538 protected: | 538 protected: |
| 539 Element(const QualifiedName& tagName, Document* document, ConstructionType t
ype) | 539 Element(const QualifiedName& tagName, Document* document, ConstructionType t
ype) |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 895 } | 895 } |
| 896 | 896 |
| 897 inline bool isShadowHost(const Element* element) | 897 inline bool isShadowHost(const Element* element) |
| 898 { | 898 { |
| 899 return element && element->shadow(); | 899 return element && element->shadow(); |
| 900 } | 900 } |
| 901 | 901 |
| 902 } // namespace | 902 } // namespace |
| 903 | 903 |
| 904 #endif | 904 #endif |
| OLD | NEW |