Home | History | Annotate | Download | only in rendering

Lines Matching full:child

156                         // hence we must be a child of that reset counter.
203 // previousSibling if it is a reset counter and hence the current previousSibling is its child.
308 CounterNode* child = m_counterNode;
309 int value = child->actsAsReset() ? child->value() : child->countInParent();
314 if (!child->actsAsReset())
315 child = child->parent();
316 while (CounterNode* parent = child->parent()) {
317 text = listMarkerText(m_counter.listStyle(), child->countInParent())
319 child = parent;
343 for (CounterNode* child = node->lastDescendant(); child && child != node; child = previous) {
344 previous = child->previousInPreOrder();
345 child->parent()->removeChild(child, identifier);
346 ASSERT(counterMaps().get(child->renderer())->get(identifier.impl()) == child);
347 counterMaps().get(child->renderer())->remove(identifier.impl());
348 if (!child->renderer()->documentBeingDestroyed()) {
349 RenderObjectChildList* children = child->renderer()->virtualChildren();
351 children->invalidateCounters(child->renderer(), identifier);
353 delete child;