| 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 * (C) 2007 David Smith (catfish.man@gmail.com) | 6 * (C) 2007 David Smith (catfish.man@gmail.com) |
| 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. | 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. |
| 8 * (C) 2007 Eric Seidel (eric@webkit.org) | 8 * (C) 2007 Eric Seidel (eric@webkit.org) |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "DOMTokenList.h" | 37 #include "DOMTokenList.h" |
| 38 #include "DatasetDOMStringMap.h" | 38 #include "DatasetDOMStringMap.h" |
| 39 #include "Document.h" | 39 #include "Document.h" |
| 40 #include "DocumentFragment.h" | 40 #include "DocumentFragment.h" |
| 41 #include "DocumentSharedObjectPool.h" | 41 #include "DocumentSharedObjectPool.h" |
| 42 #include "ElementRareData.h" | 42 #include "ElementRareData.h" |
| 43 #include "ExceptionCode.h" | 43 #include "ExceptionCode.h" |
| 44 #include "FlowThreadController.h" | 44 #include "FlowThreadController.h" |
| 45 #include "FocusController.h" | 45 #include "FocusController.h" |
| 46 #include "Frame.h" | 46 #include "Frame.h" |
| 47 #include "FrameSelection.h" |
| 47 #include "FrameView.h" | 48 #include "FrameView.h" |
| 48 #include "HTMLCollection.h" | 49 #include "HTMLCollection.h" |
| 49 #include "HTMLDocument.h" | 50 #include "HTMLDocument.h" |
| 50 #include "HTMLElement.h" | 51 #include "HTMLElement.h" |
| 51 #include "HTMLFormControlsCollection.h" | 52 #include "HTMLFormControlsCollection.h" |
| 52 #include "HTMLFrameOwnerElement.h" | 53 #include "HTMLFrameOwnerElement.h" |
| 53 #include "HTMLLabelElement.h" | 54 #include "HTMLLabelElement.h" |
| 54 #include "HTMLNames.h" | 55 #include "HTMLNames.h" |
| 55 #include "HTMLOptionsCollection.h" | 56 #include "HTMLOptionsCollection.h" |
| 56 #include "HTMLParserIdioms.h" | 57 #include "HTMLParserIdioms.h" |
| (...skipping 3055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3112 return 0; | 3113 return 0; |
| 3113 } | 3114 } |
| 3114 | 3115 |
| 3115 Attribute* UniqueElementData::attributeItem(unsigned index) | 3116 Attribute* UniqueElementData::attributeItem(unsigned index) |
| 3116 { | 3117 { |
| 3117 ASSERT_WITH_SECURITY_IMPLICATION(index < length()); | 3118 ASSERT_WITH_SECURITY_IMPLICATION(index < length()); |
| 3118 return &m_attributeVector.at(index); | 3119 return &m_attributeVector.at(index); |
| 3119 } | 3120 } |
| 3120 | 3121 |
| 3121 } // namespace WebCore | 3122 } // namespace WebCore |
| OLD | NEW |