HomeSort by relevance Sort by last modified time
    Searched full:removedchildren (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 526 NodeVector removedChildren;
531 removedChildren.reserveInitialCapacity(childNodeCount());
533 removedChildren.append(m_firstChild);
538 childrenChanged(false, 0, 0, -static_cast<int>(removedChildren.size()));
540 for (size_t i = 0; i < removedChildren.size(); ++i)
541 ChildNodeRemovalNotifier(*this).notify(*removedChildren[i]);

Completed in 59 milliseconds