| 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 String outerText(); | 424 String outerText(); |
| 425 String innerHTML() const; | 425 String innerHTML() const; |
| 426 String outerHTML() const; | 426 String outerHTML() const; |
| 427 void setInnerHTML(const String&, ExceptionState&); | 427 void setInnerHTML(const String&, ExceptionState&); |
| 428 void setOuterHTML(const String&, ExceptionState&); | 428 void setOuterHTML(const String&, ExceptionState&); |
| 429 | 429 |
| 430 Element* insertAdjacentElement(const String& where, Element* newChild, Excep
tionState&); | 430 Element* insertAdjacentElement(const String& where, Element* newChild, Excep
tionState&); |
| 431 void insertAdjacentText(const String& where, const String& text, ExceptionSt
ate&); | 431 void insertAdjacentText(const String& where, const String& text, ExceptionSt
ate&); |
| 432 void insertAdjacentHTML(const String& where, const String& html, ExceptionSt
ate&); | 432 void insertAdjacentHTML(const String& where, const String& html, ExceptionSt
ate&); |
| 433 | 433 |
| 434 void setPointerCapture(int pointerId, ExceptionState&); |
| 435 void releasePointerCapture(int pointerId, ExceptionState&); |
| 436 |
| 434 String textFromChildren(); | 437 String textFromChildren(); |
| 435 | 438 |
| 436 virtual String title() const { return String(); } | 439 virtual String title() const { return String(); } |
| 437 | 440 |
| 438 virtual const AtomicString& shadowPseudoId() const; | 441 virtual const AtomicString& shadowPseudoId() const; |
| 439 void setShadowPseudoId(const AtomicString&); | 442 void setShadowPseudoId(const AtomicString&); |
| 440 | 443 |
| 441 LayoutSize minimumSizeForResizing() const; | 444 LayoutSize minimumSizeForResizing() const; |
| 442 void setMinimumSizeForResizing(const LayoutSize&); | 445 void setMinimumSizeForResizing(const LayoutSize&); |
| 443 | 446 |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) | 942 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) |
| 940 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 943 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 941 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ | 944 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ |
| 942 { \ | 945 { \ |
| 943 return adoptRefWillBeNoop(new T(tagName, document)); \ | 946 return adoptRefWillBeNoop(new T(tagName, document)); \ |
| 944 } | 947 } |
| 945 | 948 |
| 946 } // namespace | 949 } // namespace |
| 947 | 950 |
| 948 #endif // Element_h | 951 #endif // Element_h |
| OLD | NEW |