[Webkit-unassigned] [Bug 53696] Caret is rendered at an incorrect position at the boundary of Arabic number in a LTR context
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Feb 4 16:52:07 PST 2011
https://bugs.webkit.org/show_bug.cgi?id=53696
--- Comment #6 from Ryosuke Niwa <rniwa at webkit.org> 2011-02-04 16:52:07 PST ---
(From update of attachment 81318)
View in context: https://bugs.webkit.org/attachment.cgi?id=81318&action=review
> Source/WebCore/dom/Position.cpp:1126
> - if (!nextBox || nextBox->bidiLevel() >= level)
> + if (nextBox && nextBox->bidiLevel() >= level)
> return;
>
> + if (!nextBox) {
> + InlineBox* prevBox = inlineBox;
> + do {
> + if (prevBox->bidiLevel() < level) {
> + inlineBox = prevBox;
> + caretOffset = inlineBox->caretRightmostOffset();
> + break;
> + }
> + prevBox = prevBox->prevLeafChild();
> + } while (prevBox);
> + return;
> + }
> +
I'm not confident about this change. I think it makes sense but I might be missing some cases since I'm not that familiar with this code.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list