| 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 10 matching lines...) Expand all Loading... |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef Element_h | 25 #ifndef Element_h |
| 26 #define Element_h | 26 #define Element_h |
| 27 | 27 |
| 28 #include "HTMLNames.h" | 28 #include "HTMLNames.h" |
| 29 #include "core/dom/Attribute.h" | 29 #include "core/dom/Attribute.h" |
| 30 #include "core/dom/Document.h" | 30 #include "core/dom/Document.h" |
| 31 #include "core/dom/ParserContentPolicy.h" | |
| 32 #include "core/dom/SpaceSplitString.h" | 31 #include "core/dom/SpaceSplitString.h" |
| 33 #include "core/html/CollectionType.h" | 32 #include "core/html/CollectionType.h" |
| 34 #include "core/platform/ScrollTypes.h" | 33 #include "core/platform/ScrollTypes.h" |
| 35 | 34 |
| 36 namespace WebCore { | 35 namespace WebCore { |
| 37 | 36 |
| 38 class Animation; | 37 class Animation; |
| 39 | 38 |
| 40 class Attr; | 39 class Attr; |
| 41 class ClientRect; | 40 class ClientRect; |
| (...skipping 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 | 994 |
| 996 inline const Attribute* ElementData::attributeItem(unsigned index) const | 995 inline const Attribute* ElementData::attributeItem(unsigned index) const |
| 997 { | 996 { |
| 998 RELEASE_ASSERT(index < length()); | 997 RELEASE_ASSERT(index < length()); |
| 999 return attributeBase() + index; | 998 return attributeBase() + index; |
| 1000 } | 999 } |
| 1001 | 1000 |
| 1002 } // namespace | 1001 } // namespace |
| 1003 | 1002 |
| 1004 #endif | 1003 #endif |
| OLD | NEW |