| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 String outerHTML() const; | 446 String outerHTML() const; |
| 447 void setInnerHTML(const String&, ExceptionState&); | 447 void setInnerHTML(const String&, ExceptionState&); |
| 448 void setOuterHTML(const String&, ExceptionState&); | 448 void setOuterHTML(const String&, ExceptionState&); |
| 449 | 449 |
| 450 Element* insertAdjacentElement(const String& where, Element* newChild, Excep
tionState&); | 450 Element* insertAdjacentElement(const String& where, Element* newChild, Excep
tionState&); |
| 451 void insertAdjacentText(const String& where, const String& text, ExceptionSt
ate&); | 451 void insertAdjacentText(const String& where, const String& text, ExceptionSt
ate&); |
| 452 void insertAdjacentHTML(const String& where, const String& html, ExceptionSt
ate&); | 452 void insertAdjacentHTML(const String& where, const String& html, ExceptionSt
ate&); |
| 453 | 453 |
| 454 void setPointerCapture(int pointerId, ExceptionState&); | 454 void setPointerCapture(int pointerId, ExceptionState&); |
| 455 void releasePointerCapture(int pointerId, ExceptionState&); | 455 void releasePointerCapture(int pointerId, ExceptionState&); |
| 456 bool hasPointerCapture(int pointerId); | 456 bool hasPointerCapture(int pointerId) const; |
| 457 | 457 |
| 458 String textFromChildren(); | 458 String textFromChildren(); |
| 459 | 459 |
| 460 virtual String title() const { return String(); } | 460 virtual String title() const { return String(); } |
| 461 virtual String defaultToolTip() const { return String(); } | 461 virtual String defaultToolTip() const { return String(); } |
| 462 | 462 |
| 463 virtual const AtomicString& shadowPseudoId() const; | 463 virtual const AtomicString& shadowPseudoId() const; |
| 464 // The specified string must start with "-webkit-" or "-internal-". The | 464 // The specified string must start with "-webkit-" or "-internal-". The |
| 465 // former can be used as a selector in any places, and the latter can be | 465 // former can be used as a selector in any places, and the latter can be |
| 466 // used only in UA stylesheet. | 466 // used only in UA stylesheet. |
| (...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 990 static T* create(const QualifiedName&, Document&) | 990 static T* create(const QualifiedName&, Document&) |
| 991 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 991 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 992 T* T::create(const QualifiedName& tagName, Document& document) \ | 992 T* T::create(const QualifiedName& tagName, Document& document) \ |
| 993 { \ | 993 { \ |
| 994 return new T(tagName, document); \ | 994 return new T(tagName, document); \ |
| 995 } | 995 } |
| 996 | 996 |
| 997 } // namespace blink | 997 } // namespace blink |
| 998 | 998 |
| 999 #endif // Element_h | 999 #endif // Element_h |
| OLD | NEW |