| 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 15 matching lines...) Expand all Loading... |
| 26 #define Element_h | 26 #define Element_h |
| 27 | 27 |
| 28 #include "CSSPropertyNames.h" | 28 #include "CSSPropertyNames.h" |
| 29 #include "HTMLNames.h" | 29 #include "HTMLNames.h" |
| 30 #include "core/css/CSSPrimitiveValue.h" | 30 #include "core/css/CSSPrimitiveValue.h" |
| 31 #include "core/dom/Attribute.h" | 31 #include "core/dom/Attribute.h" |
| 32 #include "core/dom/Document.h" | 32 #include "core/dom/Document.h" |
| 33 #include "core/dom/SpaceSplitString.h" | 33 #include "core/dom/SpaceSplitString.h" |
| 34 #include "core/html/CollectionType.h" | 34 #include "core/html/CollectionType.h" |
| 35 #include "core/page/FocusDirection.h" | 35 #include "core/page/FocusDirection.h" |
| 36 #include "core/platform/ScrollTypes.h" | |
| 37 #include "core/rendering/RegionOversetState.h" | 36 #include "core/rendering/RegionOversetState.h" |
| 37 #include "platform/scroll/ScrollTypes.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class ActiveAnimations; | 41 class ActiveAnimations; |
| 42 class Attr; | 42 class Attr; |
| 43 class Attribute; | 43 class Attribute; |
| 44 class ClientRect; | 44 class ClientRect; |
| 45 class ClientRectList; | 45 class ClientRectList; |
| 46 class DOMStringMap; | 46 class DOMStringMap; |
| 47 class DOMTokenList; | 47 class DOMTokenList; |
| (...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 | 1096 |
| 1097 inline const Attribute* ElementData::attributeItem(unsigned index) const | 1097 inline const Attribute* ElementData::attributeItem(unsigned index) const |
| 1098 { | 1098 { |
| 1099 RELEASE_ASSERT(index < length()); | 1099 RELEASE_ASSERT(index < length()); |
| 1100 return attributeBase() + index; | 1100 return attributeBase() + index; |
| 1101 } | 1101 } |
| 1102 | 1102 |
| 1103 } // namespace | 1103 } // namespace |
| 1104 | 1104 |
| 1105 #endif | 1105 #endif |
| OLD | NEW |