| 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, 2007, 2008 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. |
| 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) | 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) |
| 6 * Copyright (C) 2010 Daniel Bates (dbates@intudata.com) | 6 * Copyright (C) 2010 Daniel Bates (dbates@intudata.com) |
| 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 setInline(true); // our object is Inline | 1060 setInline(true); // our object is Inline |
| 1061 setReplaced(true); // pretend to be replaced | 1061 setReplaced(true); // pretend to be replaced |
| 1062 } | 1062 } |
| 1063 | 1063 |
| 1064 RenderListMarker::~RenderListMarker() | 1064 RenderListMarker::~RenderListMarker() |
| 1065 { | 1065 { |
| 1066 if (m_image) | 1066 if (m_image) |
| 1067 m_image->removeClient(this); | 1067 m_image->removeClient(this); |
| 1068 } | 1068 } |
| 1069 | 1069 |
| 1070 void RenderListMarker::trace(Visitor* visitor) |
| 1071 { |
| 1072 visitor->trace(m_listItem); |
| 1073 RenderBox::trace(visitor); |
| 1074 } |
| 1075 |
| 1070 RenderListMarker* RenderListMarker::createAnonymous(RenderListItem* item) | 1076 RenderListMarker* RenderListMarker::createAnonymous(RenderListItem* item) |
| 1071 { | 1077 { |
| 1072 Document& document = item->document(); | 1078 Document& document = item->document(); |
| 1073 RenderListMarker* renderer = new RenderListMarker(item); | 1079 RenderListMarker* renderer = new RenderListMarker(item); |
| 1074 renderer->setDocumentForAnonymous(&document); | 1080 renderer->setDocumentForAnonymous(&document); |
| 1075 return renderer; | 1081 return renderer; |
| 1076 } | 1082 } |
| 1077 | 1083 |
| 1078 void RenderListMarker::styleWillChange(StyleDifference diff, const RenderStyle&
newStyle) | 1084 void RenderListMarker::styleWillChange(StyleDifference diff, const RenderStyle&
newStyle) |
| 1079 { | 1085 { |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1837 | 1843 |
| 1838 if (clipToVisibleContent) | 1844 if (clipToVisibleContent) |
| 1839 mapRectToPaintInvalidationBacking(paintInvalidationContainer, rect); | 1845 mapRectToPaintInvalidationBacking(paintInvalidationContainer, rect); |
| 1840 else | 1846 else |
| 1841 rect = localToContainerQuad(FloatRect(rect), paintInvalidationContainer)
.enclosingBoundingBox(); | 1847 rect = localToContainerQuad(FloatRect(rect), paintInvalidationContainer)
.enclosingBoundingBox(); |
| 1842 | 1848 |
| 1843 return rect; | 1849 return rect; |
| 1844 } | 1850 } |
| 1845 | 1851 |
| 1846 } // namespace blink | 1852 } // namespace blink |
| OLD | NEW |