| 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 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) | 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #include "config.h" | 24 #include "config.h" |
| 25 #include "core/rendering/RenderListItem.h" | 25 #include "core/rendering/RenderListItem.h" |
| 26 | 26 |
| 27 #include "HTMLNames.h" | 27 #include "HTMLNames.h" |
| 28 #include "core/dom/NodeTraversal.h" | 28 #include "core/dom/NodeTraversal.h" |
| 29 #include "core/html/HTMLOListElement.h" | 29 #include "core/html/HTMLOListElement.h" |
| 30 #include "core/rendering/RenderListMarker.h" | 30 #include "core/rendering/RenderListMarker.h" |
| 31 #include "core/rendering/RenderView.h" | 31 #include "core/rendering/RenderView.h" |
| 32 #include <wtf/StdLibExtras.h> | 32 #include "wtf/StdLibExtras.h" |
| 33 #include <wtf/text/StringBuilder.h> | 33 #include "wtf/text/StringBuilder.h" |
| 34 | 34 |
| 35 using namespace std; | 35 using namespace std; |
| 36 | 36 |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 using namespace HTMLNames; | 39 using namespace HTMLNames; |
| 40 | 40 |
| 41 RenderListItem::RenderListItem(Element* element) | 41 RenderListItem::RenderListItem(Element* element) |
| 42 : RenderBlock(element) | 42 : RenderBlock(element) |
| 43 , m_marker(0) | 43 , m_marker(0) |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 // assume that all the following ones have too. | 505 // assume that all the following ones have too. |
| 506 // This gives us the opportunity to stop here and avoid | 506 // This gives us the opportunity to stop here and avoid |
| 507 // marking the same nodes again. | 507 // marking the same nodes again. |
| 508 break; | 508 break; |
| 509 } | 509 } |
| 510 item->updateValue(); | 510 item->updateValue(); |
| 511 } | 511 } |
| 512 } | 512 } |
| 513 | 513 |
| 514 } // namespace WebCore | 514 } // namespace WebCore |
| OLD | NEW |