Index: WebCore/rendering/CounterNode.cpp |
=================================================================== |
--- WebCore/rendering/CounterNode.cpp (revision 69500) |
+++ WebCore/rendering/CounterNode.cpp (working copy) |
@@ -41,6 +41,11 @@ |
{ |
} |
+PassRefPtr<CounterNode> CounterNode::create(RenderObject* renderer, bool hasResetType, int value) |
+{ |
+ return adoptRef(new CounterNode(renderer, hasResetType, value)); |
+} |
+ |
CounterNode* CounterNode::nextInPreOrderAfterChildren(const CounterNode* stayWithin) const |
{ |
if (this == stayWithin) |