summaryrefslogtreecommitdiff
path: root/Source/WebCore/rendering/RenderTableSection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/RenderTableSection.cpp')
-rw-r--r--Source/WebCore/rendering/RenderTableSection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/rendering/RenderTableSection.cpp b/Source/WebCore/rendering/RenderTableSection.cpp
index 1f1379e48..80e6465ec 100644
--- a/Source/WebCore/rendering/RenderTableSection.cpp
+++ b/Source/WebCore/rendering/RenderTableSection.cpp
@@ -587,9 +587,9 @@ void RenderTableSection::layoutRows()
}
}
- if (HashSet<RenderBox*>* percentHeightDescendants = cell->percentHeightDescendants()) {
- HashSet<RenderBox*>::iterator end = percentHeightDescendants->end();
- for (HashSet<RenderBox*>::iterator it = percentHeightDescendants->begin(); it != end; ++it) {
+ if (ListHashSet<RenderBox*>* percentHeightDescendants = cell->percentHeightDescendants()) {
+ ListHashSet<RenderBox*>::iterator end = percentHeightDescendants->end();
+ for (ListHashSet<RenderBox*>::iterator it = percentHeightDescendants->begin(); it != end; ++it) {
RenderBox* box = *it;
if (!box->isReplaced() && !box->scrollsOverflow() && !flexAllChildren)
continue;