| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 String outerText(); | 428 String outerText(); |
| 429 String innerHTML() const; | 429 String innerHTML() const; |
| 430 String outerHTML() const; | 430 String outerHTML() const; |
| 431 void setInnerHTML(const String&, ExceptionState&); | 431 void setInnerHTML(const String&, ExceptionState&); |
| 432 void setOuterHTML(const String&, ExceptionState&); | 432 void setOuterHTML(const String&, ExceptionState&); |
| 433 | 433 |
| 434 Element* insertAdjacentElement(const String& where, Element* newChild, Excep
tionState&); | 434 Element* insertAdjacentElement(const String& where, Element* newChild, Excep
tionState&); |
| 435 void insertAdjacentText(const String& where, const String& text, ExceptionSt
ate&); | 435 void insertAdjacentText(const String& where, const String& text, ExceptionSt
ate&); |
| 436 void insertAdjacentHTML(const String& where, const String& html, ExceptionSt
ate&); | 436 void insertAdjacentHTML(const String& where, const String& html, ExceptionSt
ate&); |
| 437 | 437 |
| 438 void setPointerCapture(int pointerId, ExceptionState&); |
| 439 void releasePointerCapture(int pointerId, ExceptionState&); |
| 440 |
| 438 String textFromChildren(); | 441 String textFromChildren(); |
| 439 | 442 |
| 440 virtual String title() const { return String(); } | 443 virtual String title() const { return String(); } |
| 441 virtual String defaultToolTip() const { return String(); } | 444 virtual String defaultToolTip() const { return String(); } |
| 442 | 445 |
| 443 virtual const AtomicString& shadowPseudoId() const; | 446 virtual const AtomicString& shadowPseudoId() const; |
| 444 void setShadowPseudoId(const AtomicString&); | 447 void setShadowPseudoId(const AtomicString&); |
| 445 | 448 |
| 446 LayoutSize minimumSizeForResizing() const; | 449 LayoutSize minimumSizeForResizing() const; |
| 447 void setMinimumSizeForResizing(const LayoutSize&); | 450 void setMinimumSizeForResizing(const LayoutSize&); |
| (...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 946 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) | 949 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) |
| 947 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 950 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 948 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ | 951 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ |
| 949 { \ | 952 { \ |
| 950 return adoptRefWillBeNoop(new T(tagName, document)); \ | 953 return adoptRefWillBeNoop(new T(tagName, document)); \ |
| 951 } | 954 } |
| 952 | 955 |
| 953 } // namespace blink | 956 } // namespace blink |
| 954 | 957 |
| 955 #endif // Element_h | 958 #endif // Element_h |
| OLD | NEW |