[Webkit-unassigned] [Bug 14134] REGRESSION (r25353): Whitespace nodes ignored between inline list items

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Dec 31 17:16:17 PST 2007


http://bugs.webkit.org/show_bug.cgi?id=14134


darin at apple.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #18221|review?                     |review+
               Flag|                            |




------- Comment #25 from darin at apple.com  2007-12-31 17:16 PDT -------
(From update of attachment 18221)
+        Node* next = nextSibling();
+        while (next) {
+            if (next->renderer())
+                break;
+            if (!next->attached())
+                break;  // Assume this means none of the following siblings
are attached.
+            if (next->isTextNode())
+                next->createRendererIfNeeded();
+            next = next->nextSibling();
+        }

That should be a for loop.

r=me


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list