haikuwebkit/Source/WebCore/rendering/RenderDescendantIterator.h

182 lines
5.7 KiB
C
Raw Permalink Normal View History

Add RenderDescendantIterator to traverse a RenderObject's descendants https://bugs.webkit.org/show_bug.cgi?id=157785 Reviewed by Zalan Bujtas. Add RenderDescendantIterator to traverse a RenderObject's descendants. I am planning to use it in the iOS Text Autosizing code (See Bug 157784). * WebCore.xcodeproj/project.pbxproj: * rendering/RenderDescendantIterator.h: Added. (WebCore::RenderDescendantIterator<T>::RenderDescendantIterator): (WebCore::RenderDescendantIterator<T>::operator): (WebCore::RenderDescendantConstIterator<T>::RenderDescendantConstIterator): (WebCore::RenderDescendantConstIterator<T>::operator): (WebCore::RenderDescendantIteratorAdapter<T>::RenderDescendantIteratorAdapter): (WebCore::RenderDescendantIteratorAdapter<T>::begin): (WebCore::RenderDescendantIteratorAdapter<T>::end): (WebCore::RenderDescendantConstIteratorAdapter<T>::RenderDescendantConstIteratorAdapter): (WebCore::RenderDescendantConstIteratorAdapter<T>::begin): (WebCore::RenderDescendantConstIteratorAdapter<T>::end): (WebCore::descendantsOfType): * rendering/RenderIterator.h: (WebCore::RenderObjectTraversal::firstChild): (WebCore::RenderObjectTraversal::nextAncestorSibling): (WebCore::RenderObjectTraversal::next): (WebCore::RenderTraversal::firstChild): (WebCore::RenderTraversal::lastChild): (WebCore::RenderTraversal::nextSibling): (WebCore::RenderTraversal::previousSibling): (WebCore::RenderTraversal::findAncestorOfType): (WebCore::RenderTraversal::firstWithin): (WebCore::RenderTraversal::next): (WebCore::RenderIterator<T>::traverseNext): (WebCore::RenderConstIterator<T>::traverseNext): Canonical link: https://commits.webkit.org/175913@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@200994 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-17 04:11:34 +00:00
/*
* Copyright (C) 2016 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "RenderIterator.h"
namespace WebCore {
template <typename T>
class RenderDescendantIterator : public RenderIterator<T> {
public:
RenderDescendantIterator(const RenderElement& root);
RenderDescendantIterator(const RenderElement& root, T* current);
RenderDescendantIterator& operator++();
};
template <typename T>
class RenderDescendantConstIterator : public RenderConstIterator<T> {
public:
RenderDescendantConstIterator(const RenderElement& root);
RenderDescendantConstIterator(const RenderElement& root, const T* current);
RenderDescendantConstIterator& operator++();
};
template <typename T>
class RenderDescendantIteratorAdapter {
public:
RenderDescendantIteratorAdapter(RenderElement& root);
RenderDescendantIterator<T> begin();
RenderDescendantIterator<T> end();
RenderQuote should not mutate render tree https://bugs.webkit.org/show_bug.cgi?id=175328 Reviewed by Zalan Bujtas. RenderQuote text renderers are currently created and deleted in a quirky fashion using a linked list. This patch moves to a simpler model that guarantees the mutations are always done in controlled fashion during render tree update. * dom/Document.cpp: (WebCore::Document::updateTextRenderer): Move text renderer updating to Document so we can set the inRenderTreeUpdate bit for it too. * dom/Document.h: * dom/Text.cpp: (WebCore::Text::updateRendererAfterContentChange): * rendering/RenderDescendantIterator.h: (WebCore::RenderDescendantIteratorAdapter<T>::at): (WebCore::RenderDescendantConstIteratorAdapter<T>::at const): Add at() function for starting iteration from a specified renderer. * rendering/RenderQuote.cpp: (WebCore::RenderQuote::insertedIntoTree): (WebCore::RenderQuote::willBeRemovedFromTree): Register and unregister quotes to RenderView. Don't do any mutations. (WebCore::RenderQuote::styleDidChange): Invalidate the text renderer but don't mutate it. (WebCore::RenderQuote::updateTextRenderer): (WebCore::RenderQuote::computeText const): (WebCore::RenderQuote::updateRenderers): Compute depth of all render quotes and update the text renderer as needed. (WebCore::RenderQuote::willBeDestroyed): Deleted. (WebCore::RenderQuote::attachQuote): Deleted. (WebCore::RenderQuote::detachQuote): Deleted. (WebCore::RenderQuote::updateDepth): Deleted. Get rid of the linked list. * rendering/RenderQuote.h: * rendering/RenderView.cpp: (WebCore::RenderView::registerQuote): (WebCore::RenderView::unregisterQuote): Maintain a render tree order ListHashSet of RenderQuotes. (WebCore::RenderView::updateSpecialRenderers): Add a function for making additional render tree mutations at the end of a render tree update. Currently this just invokes RenderQuote::updateRenderers. * rendering/RenderView.h: * style/RenderTreeUpdater.cpp: (WebCore::RenderTreeUpdater::commit): Call RenderView::updateSpecialRenderers after committing all other changes. Canonical link: https://commits.webkit.org/192077@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@220447 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2017-08-09 07:36:45 +00:00
RenderDescendantIterator<T> at(T&);
Add RenderDescendantIterator to traverse a RenderObject's descendants https://bugs.webkit.org/show_bug.cgi?id=157785 Reviewed by Zalan Bujtas. Add RenderDescendantIterator to traverse a RenderObject's descendants. I am planning to use it in the iOS Text Autosizing code (See Bug 157784). * WebCore.xcodeproj/project.pbxproj: * rendering/RenderDescendantIterator.h: Added. (WebCore::RenderDescendantIterator<T>::RenderDescendantIterator): (WebCore::RenderDescendantIterator<T>::operator): (WebCore::RenderDescendantConstIterator<T>::RenderDescendantConstIterator): (WebCore::RenderDescendantConstIterator<T>::operator): (WebCore::RenderDescendantIteratorAdapter<T>::RenderDescendantIteratorAdapter): (WebCore::RenderDescendantIteratorAdapter<T>::begin): (WebCore::RenderDescendantIteratorAdapter<T>::end): (WebCore::RenderDescendantConstIteratorAdapter<T>::RenderDescendantConstIteratorAdapter): (WebCore::RenderDescendantConstIteratorAdapter<T>::begin): (WebCore::RenderDescendantConstIteratorAdapter<T>::end): (WebCore::descendantsOfType): * rendering/RenderIterator.h: (WebCore::RenderObjectTraversal::firstChild): (WebCore::RenderObjectTraversal::nextAncestorSibling): (WebCore::RenderObjectTraversal::next): (WebCore::RenderTraversal::firstChild): (WebCore::RenderTraversal::lastChild): (WebCore::RenderTraversal::nextSibling): (WebCore::RenderTraversal::previousSibling): (WebCore::RenderTraversal::findAncestorOfType): (WebCore::RenderTraversal::firstWithin): (WebCore::RenderTraversal::next): (WebCore::RenderIterator<T>::traverseNext): (WebCore::RenderConstIterator<T>::traverseNext): Canonical link: https://commits.webkit.org/175913@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@200994 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-17 04:11:34 +00:00
private:
RenderElement& m_root;
};
template <typename T>
class RenderDescendantConstIteratorAdapter {
public:
RenderDescendantConstIteratorAdapter(const RenderElement& root);
RenderDescendantConstIterator<T> begin() const;
RenderDescendantConstIterator<T> end() const;
RenderQuote should not mutate render tree https://bugs.webkit.org/show_bug.cgi?id=175328 Reviewed by Zalan Bujtas. RenderQuote text renderers are currently created and deleted in a quirky fashion using a linked list. This patch moves to a simpler model that guarantees the mutations are always done in controlled fashion during render tree update. * dom/Document.cpp: (WebCore::Document::updateTextRenderer): Move text renderer updating to Document so we can set the inRenderTreeUpdate bit for it too. * dom/Document.h: * dom/Text.cpp: (WebCore::Text::updateRendererAfterContentChange): * rendering/RenderDescendantIterator.h: (WebCore::RenderDescendantIteratorAdapter<T>::at): (WebCore::RenderDescendantConstIteratorAdapter<T>::at const): Add at() function for starting iteration from a specified renderer. * rendering/RenderQuote.cpp: (WebCore::RenderQuote::insertedIntoTree): (WebCore::RenderQuote::willBeRemovedFromTree): Register and unregister quotes to RenderView. Don't do any mutations. (WebCore::RenderQuote::styleDidChange): Invalidate the text renderer but don't mutate it. (WebCore::RenderQuote::updateTextRenderer): (WebCore::RenderQuote::computeText const): (WebCore::RenderQuote::updateRenderers): Compute depth of all render quotes and update the text renderer as needed. (WebCore::RenderQuote::willBeDestroyed): Deleted. (WebCore::RenderQuote::attachQuote): Deleted. (WebCore::RenderQuote::detachQuote): Deleted. (WebCore::RenderQuote::updateDepth): Deleted. Get rid of the linked list. * rendering/RenderQuote.h: * rendering/RenderView.cpp: (WebCore::RenderView::registerQuote): (WebCore::RenderView::unregisterQuote): Maintain a render tree order ListHashSet of RenderQuotes. (WebCore::RenderView::updateSpecialRenderers): Add a function for making additional render tree mutations at the end of a render tree update. Currently this just invokes RenderQuote::updateRenderers. * rendering/RenderView.h: * style/RenderTreeUpdater.cpp: (WebCore::RenderTreeUpdater::commit): Call RenderView::updateSpecialRenderers after committing all other changes. Canonical link: https://commits.webkit.org/192077@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@220447 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2017-08-09 07:36:45 +00:00
RenderDescendantConstIterator<T> at(const T&) const;
Add RenderDescendantIterator to traverse a RenderObject's descendants https://bugs.webkit.org/show_bug.cgi?id=157785 Reviewed by Zalan Bujtas. Add RenderDescendantIterator to traverse a RenderObject's descendants. I am planning to use it in the iOS Text Autosizing code (See Bug 157784). * WebCore.xcodeproj/project.pbxproj: * rendering/RenderDescendantIterator.h: Added. (WebCore::RenderDescendantIterator<T>::RenderDescendantIterator): (WebCore::RenderDescendantIterator<T>::operator): (WebCore::RenderDescendantConstIterator<T>::RenderDescendantConstIterator): (WebCore::RenderDescendantConstIterator<T>::operator): (WebCore::RenderDescendantIteratorAdapter<T>::RenderDescendantIteratorAdapter): (WebCore::RenderDescendantIteratorAdapter<T>::begin): (WebCore::RenderDescendantIteratorAdapter<T>::end): (WebCore::RenderDescendantConstIteratorAdapter<T>::RenderDescendantConstIteratorAdapter): (WebCore::RenderDescendantConstIteratorAdapter<T>::begin): (WebCore::RenderDescendantConstIteratorAdapter<T>::end): (WebCore::descendantsOfType): * rendering/RenderIterator.h: (WebCore::RenderObjectTraversal::firstChild): (WebCore::RenderObjectTraversal::nextAncestorSibling): (WebCore::RenderObjectTraversal::next): (WebCore::RenderTraversal::firstChild): (WebCore::RenderTraversal::lastChild): (WebCore::RenderTraversal::nextSibling): (WebCore::RenderTraversal::previousSibling): (WebCore::RenderTraversal::findAncestorOfType): (WebCore::RenderTraversal::firstWithin): (WebCore::RenderTraversal::next): (WebCore::RenderIterator<T>::traverseNext): (WebCore::RenderConstIterator<T>::traverseNext): Canonical link: https://commits.webkit.org/175913@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@200994 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-17 04:11:34 +00:00
private:
const RenderElement& m_root;
};
template <typename T> RenderDescendantIteratorAdapter<T> descendantsOfType(RenderElement&);
template <typename T> RenderDescendantConstIteratorAdapter<T> descendantsOfType(const RenderElement&);
// RenderDescendantIterator
template <typename T>
inline RenderDescendantIterator<T>::RenderDescendantIterator(const RenderElement& root)
: RenderIterator<T>(&root)
{
}
template <typename T>
inline RenderDescendantIterator<T>::RenderDescendantIterator(const RenderElement& root, T* current)
: RenderIterator<T>(&root, current)
{
}
template <typename T>
inline RenderDescendantIterator<T>& RenderDescendantIterator<T>::operator++()
{
return static_cast<RenderDescendantIterator<T>&>(RenderIterator<T>::traverseNext());
}
// RenderDescendantConstIterator
template <typename T>
inline RenderDescendantConstIterator<T>::RenderDescendantConstIterator(const RenderElement& root)
: RenderConstIterator<T>(&root)
{
}
template <typename T>
inline RenderDescendantConstIterator<T>::RenderDescendantConstIterator(const RenderElement& root, const T* current)
: RenderConstIterator<T>(&root, current)
{
}
template <typename T>
inline RenderDescendantConstIterator<T>& RenderDescendantConstIterator<T>::operator++()
{
return static_cast<RenderDescendantConstIterator<T>&>(RenderConstIterator<T>::traverseNext());
}
// RenderDescendantIteratorAdapter
template <typename T>
inline RenderDescendantIteratorAdapter<T>::RenderDescendantIteratorAdapter(RenderElement& root)
: m_root(root)
{
}
template <typename T>
inline RenderDescendantIterator<T> RenderDescendantIteratorAdapter<T>::begin()
{
return RenderDescendantIterator<T>(m_root, RenderTraversal::firstWithin<T>(m_root));
}
template <typename T>
inline RenderDescendantIterator<T> RenderDescendantIteratorAdapter<T>::end()
{
return RenderDescendantIterator<T>(m_root);
}
RenderQuote should not mutate render tree https://bugs.webkit.org/show_bug.cgi?id=175328 Reviewed by Zalan Bujtas. RenderQuote text renderers are currently created and deleted in a quirky fashion using a linked list. This patch moves to a simpler model that guarantees the mutations are always done in controlled fashion during render tree update. * dom/Document.cpp: (WebCore::Document::updateTextRenderer): Move text renderer updating to Document so we can set the inRenderTreeUpdate bit for it too. * dom/Document.h: * dom/Text.cpp: (WebCore::Text::updateRendererAfterContentChange): * rendering/RenderDescendantIterator.h: (WebCore::RenderDescendantIteratorAdapter<T>::at): (WebCore::RenderDescendantConstIteratorAdapter<T>::at const): Add at() function for starting iteration from a specified renderer. * rendering/RenderQuote.cpp: (WebCore::RenderQuote::insertedIntoTree): (WebCore::RenderQuote::willBeRemovedFromTree): Register and unregister quotes to RenderView. Don't do any mutations. (WebCore::RenderQuote::styleDidChange): Invalidate the text renderer but don't mutate it. (WebCore::RenderQuote::updateTextRenderer): (WebCore::RenderQuote::computeText const): (WebCore::RenderQuote::updateRenderers): Compute depth of all render quotes and update the text renderer as needed. (WebCore::RenderQuote::willBeDestroyed): Deleted. (WebCore::RenderQuote::attachQuote): Deleted. (WebCore::RenderQuote::detachQuote): Deleted. (WebCore::RenderQuote::updateDepth): Deleted. Get rid of the linked list. * rendering/RenderQuote.h: * rendering/RenderView.cpp: (WebCore::RenderView::registerQuote): (WebCore::RenderView::unregisterQuote): Maintain a render tree order ListHashSet of RenderQuotes. (WebCore::RenderView::updateSpecialRenderers): Add a function for making additional render tree mutations at the end of a render tree update. Currently this just invokes RenderQuote::updateRenderers. * rendering/RenderView.h: * style/RenderTreeUpdater.cpp: (WebCore::RenderTreeUpdater::commit): Call RenderView::updateSpecialRenderers after committing all other changes. Canonical link: https://commits.webkit.org/192077@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@220447 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2017-08-09 07:36:45 +00:00
template <typename T>
inline RenderDescendantIterator<T> RenderDescendantIteratorAdapter<T>::at(T& current)
{
return RenderDescendantIterator<T>(m_root, &current);
}
Add RenderDescendantIterator to traverse a RenderObject's descendants https://bugs.webkit.org/show_bug.cgi?id=157785 Reviewed by Zalan Bujtas. Add RenderDescendantIterator to traverse a RenderObject's descendants. I am planning to use it in the iOS Text Autosizing code (See Bug 157784). * WebCore.xcodeproj/project.pbxproj: * rendering/RenderDescendantIterator.h: Added. (WebCore::RenderDescendantIterator<T>::RenderDescendantIterator): (WebCore::RenderDescendantIterator<T>::operator): (WebCore::RenderDescendantConstIterator<T>::RenderDescendantConstIterator): (WebCore::RenderDescendantConstIterator<T>::operator): (WebCore::RenderDescendantIteratorAdapter<T>::RenderDescendantIteratorAdapter): (WebCore::RenderDescendantIteratorAdapter<T>::begin): (WebCore::RenderDescendantIteratorAdapter<T>::end): (WebCore::RenderDescendantConstIteratorAdapter<T>::RenderDescendantConstIteratorAdapter): (WebCore::RenderDescendantConstIteratorAdapter<T>::begin): (WebCore::RenderDescendantConstIteratorAdapter<T>::end): (WebCore::descendantsOfType): * rendering/RenderIterator.h: (WebCore::RenderObjectTraversal::firstChild): (WebCore::RenderObjectTraversal::nextAncestorSibling): (WebCore::RenderObjectTraversal::next): (WebCore::RenderTraversal::firstChild): (WebCore::RenderTraversal::lastChild): (WebCore::RenderTraversal::nextSibling): (WebCore::RenderTraversal::previousSibling): (WebCore::RenderTraversal::findAncestorOfType): (WebCore::RenderTraversal::firstWithin): (WebCore::RenderTraversal::next): (WebCore::RenderIterator<T>::traverseNext): (WebCore::RenderConstIterator<T>::traverseNext): Canonical link: https://commits.webkit.org/175913@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@200994 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-17 04:11:34 +00:00
// RenderDescendantConstIteratorAdapter
template <typename T>
inline RenderDescendantConstIteratorAdapter<T>::RenderDescendantConstIteratorAdapter(const RenderElement& root)
: m_root(root)
{
}
template <typename T>
inline RenderDescendantConstIterator<T> RenderDescendantConstIteratorAdapter<T>::begin() const
{
return RenderDescendantConstIterator<T>(m_root, RenderTraversal::firstWithin<T>(m_root));
}
template <typename T>
inline RenderDescendantConstIterator<T> RenderDescendantConstIteratorAdapter<T>::end() const
{
return RenderDescendantConstIterator<T>(m_root);
}
RenderQuote should not mutate render tree https://bugs.webkit.org/show_bug.cgi?id=175328 Reviewed by Zalan Bujtas. RenderQuote text renderers are currently created and deleted in a quirky fashion using a linked list. This patch moves to a simpler model that guarantees the mutations are always done in controlled fashion during render tree update. * dom/Document.cpp: (WebCore::Document::updateTextRenderer): Move text renderer updating to Document so we can set the inRenderTreeUpdate bit for it too. * dom/Document.h: * dom/Text.cpp: (WebCore::Text::updateRendererAfterContentChange): * rendering/RenderDescendantIterator.h: (WebCore::RenderDescendantIteratorAdapter<T>::at): (WebCore::RenderDescendantConstIteratorAdapter<T>::at const): Add at() function for starting iteration from a specified renderer. * rendering/RenderQuote.cpp: (WebCore::RenderQuote::insertedIntoTree): (WebCore::RenderQuote::willBeRemovedFromTree): Register and unregister quotes to RenderView. Don't do any mutations. (WebCore::RenderQuote::styleDidChange): Invalidate the text renderer but don't mutate it. (WebCore::RenderQuote::updateTextRenderer): (WebCore::RenderQuote::computeText const): (WebCore::RenderQuote::updateRenderers): Compute depth of all render quotes and update the text renderer as needed. (WebCore::RenderQuote::willBeDestroyed): Deleted. (WebCore::RenderQuote::attachQuote): Deleted. (WebCore::RenderQuote::detachQuote): Deleted. (WebCore::RenderQuote::updateDepth): Deleted. Get rid of the linked list. * rendering/RenderQuote.h: * rendering/RenderView.cpp: (WebCore::RenderView::registerQuote): (WebCore::RenderView::unregisterQuote): Maintain a render tree order ListHashSet of RenderQuotes. (WebCore::RenderView::updateSpecialRenderers): Add a function for making additional render tree mutations at the end of a render tree update. Currently this just invokes RenderQuote::updateRenderers. * rendering/RenderView.h: * style/RenderTreeUpdater.cpp: (WebCore::RenderTreeUpdater::commit): Call RenderView::updateSpecialRenderers after committing all other changes. Canonical link: https://commits.webkit.org/192077@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@220447 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2017-08-09 07:36:45 +00:00
template <typename T>
inline RenderDescendantConstIterator<T> RenderDescendantConstIteratorAdapter<T>::at(const T& current) const
{
return RenderDescendantConstIterator<T>(m_root, &current);
}
Add RenderDescendantIterator to traverse a RenderObject's descendants https://bugs.webkit.org/show_bug.cgi?id=157785 Reviewed by Zalan Bujtas. Add RenderDescendantIterator to traverse a RenderObject's descendants. I am planning to use it in the iOS Text Autosizing code (See Bug 157784). * WebCore.xcodeproj/project.pbxproj: * rendering/RenderDescendantIterator.h: Added. (WebCore::RenderDescendantIterator<T>::RenderDescendantIterator): (WebCore::RenderDescendantIterator<T>::operator): (WebCore::RenderDescendantConstIterator<T>::RenderDescendantConstIterator): (WebCore::RenderDescendantConstIterator<T>::operator): (WebCore::RenderDescendantIteratorAdapter<T>::RenderDescendantIteratorAdapter): (WebCore::RenderDescendantIteratorAdapter<T>::begin): (WebCore::RenderDescendantIteratorAdapter<T>::end): (WebCore::RenderDescendantConstIteratorAdapter<T>::RenderDescendantConstIteratorAdapter): (WebCore::RenderDescendantConstIteratorAdapter<T>::begin): (WebCore::RenderDescendantConstIteratorAdapter<T>::end): (WebCore::descendantsOfType): * rendering/RenderIterator.h: (WebCore::RenderObjectTraversal::firstChild): (WebCore::RenderObjectTraversal::nextAncestorSibling): (WebCore::RenderObjectTraversal::next): (WebCore::RenderTraversal::firstChild): (WebCore::RenderTraversal::lastChild): (WebCore::RenderTraversal::nextSibling): (WebCore::RenderTraversal::previousSibling): (WebCore::RenderTraversal::findAncestorOfType): (WebCore::RenderTraversal::firstWithin): (WebCore::RenderTraversal::next): (WebCore::RenderIterator<T>::traverseNext): (WebCore::RenderConstIterator<T>::traverseNext): Canonical link: https://commits.webkit.org/175913@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@200994 268f45cc-cd09-0410-ab3c-d52691b4dbfc
2016-05-17 04:11:34 +00:00
// Standalone functions
template <typename T>
inline RenderDescendantIteratorAdapter<T> descendantsOfType(RenderElement& root)
{
return RenderDescendantIteratorAdapter<T>(root);
}
template <typename T>
inline RenderDescendantConstIteratorAdapter<T> descendantsOfType(const RenderElement& root)
{
return RenderDescendantConstIteratorAdapter<T>(root);
}
} // namespace WebCore