| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 class Image; | 58 class Image; |
| 59 class IntSize; | 59 class IntSize; |
| 60 class Locale; | 60 class Locale; |
| 61 class MutableStylePropertySet; | 61 class MutableStylePropertySet; |
| 62 class PropertySetCSSStyleDeclaration; | 62 class PropertySetCSSStyleDeclaration; |
| 63 class PseudoElement; | 63 class PseudoElement; |
| 64 class ScrollState; | 64 class ScrollState; |
| 65 class ScrollToOptions; | 65 class ScrollToOptions; |
| 66 class ShadowRoot; | 66 class ShadowRoot; |
| 67 class ShadowRootInit; | 67 class ShadowRootInit; |
| 68 class StyleObserver; |
| 68 class StylePropertySet; | 69 class StylePropertySet; |
| 69 | 70 |
| 70 enum SpellcheckAttributeState { | 71 enum SpellcheckAttributeState { |
| 71 SpellcheckAttributeTrue, | 72 SpellcheckAttributeTrue, |
| 72 SpellcheckAttributeFalse, | 73 SpellcheckAttributeFalse, |
| 73 SpellcheckAttributeDefault | 74 SpellcheckAttributeDefault |
| 74 }; | 75 }; |
| 75 | 76 |
| 76 enum ElementFlags { | 77 enum ElementFlags { |
| 77 TabIndexWasSetExplicitly = 1 << 0, | 78 TabIndexWasSetExplicitly = 1 << 0, |
| (...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) | 897 static PassRefPtrWillBeRawPtr<T> create(const QualifiedName&, Document&) |
| 897 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ | 898 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ |
| 898 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ | 899 PassRefPtrWillBeRawPtr<T> T::create(const QualifiedName& tagName, Document&
document) \ |
| 899 { \ | 900 { \ |
| 900 return adoptRefWillBeNoop(new T(tagName, document)); \ | 901 return adoptRefWillBeNoop(new T(tagName, document)); \ |
| 901 } | 902 } |
| 902 | 903 |
| 903 } // namespace | 904 } // namespace |
| 904 | 905 |
| 905 #endif // Element_h | 906 #endif // Element_h |
| OLD | NEW |