[Webkit-unassigned] [Bug 13736] REGRESSION (r19811): Using the down arrow in a textarea gets "stuck" at the end of a wrapped line

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Dec 1 19:34:31 PST 2008


https://bugs.webkit.org/show_bug.cgi?id=13736





------- Comment #16 from mitz at webkit.org  2008-12-01 19:34 PDT -------
(From update of attachment 25644)
> +    for (RenderObject* next = renderer->nextInPreOrder((RenderObject*)container); 

You should not need to cast container, which is a RenderBlock*, to
RenderObject*.

I wonder if this for loop can be made clearer by rewriting it as a while loop
and only one copy of "next = renderer->nextInPreOrder(container)".

Can you try making the tests dump as text? I think you can get the selection in
JavaScript and test if it is in the node and offset you expect it to be and
output PASS/FAIL accordingly.


-- 
Configure bugmail: https://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