Title: [158598] trunk/Source/WebCore
Revision
158598
Author
[email protected]
Date
2013-11-04 14:50:57 -0800 (Mon, 04 Nov 2013)

Log Message

REGRESSION(r158561): fast/block/float/float-append-child-crash.html asserting.

The non-const ancestor iterator was walking siblings, not ancestors.

Rubber-stamped by Antti Koivisto.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (158597 => 158598)


--- trunk/Source/WebCore/ChangeLog	2013-11-04 22:49:35 UTC (rev 158597)
+++ trunk/Source/WebCore/ChangeLog	2013-11-04 22:50:57 UTC (rev 158598)
@@ -1,3 +1,11 @@
+2013-11-04  Andreas Kling  <[email protected]>
+
+        REGRESSION(r158561): fast/block/float/float-append-child-crash.html asserting.
+
+        The non-const ancestor iterator was walking siblings, not ancestors.
+
+        Rubber-stamped by Antti Koivisto.
+
 2013-10-31  Jer Noble  <[email protected]>
 
         [MSE] [Mac] Disclaim support for MSE in AVFoundation and QTKit engines

Modified: trunk/Source/WebCore/rendering/RenderAncestorIterator.h (158597 => 158598)


--- trunk/Source/WebCore/rendering/RenderAncestorIterator.h	2013-11-04 22:49:35 UTC (rev 158597)
+++ trunk/Source/WebCore/rendering/RenderAncestorIterator.h	2013-11-04 22:50:57 UTC (rev 158598)
@@ -90,7 +90,7 @@
 template <typename T>
 inline RenderAncestorIterator<T>& RenderAncestorIterator<T>::operator++()
 {
-    return static_cast<RenderAncestorIterator<T>&>(RenderIterator<T>::traverseNextSibling());
+    return static_cast<RenderAncestorIterator<T>&>(RenderIterator<T>::traverseAncestor());
 }
 
 // RenderAncestorConstIterator
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to