[Webkit-unassigned] [Bug 52383] New: RTL: logical order of leaf boxes is not computed correctly for iso-8859-8 when dir=RTL

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 13 11:14:06 PST 2011


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

           Summary: RTL: logical order of leaf boxes is not computed
                    correctly for iso-8859-8 when dir=RTL
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: HTML DOM
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: xji at chromium.org
                CC: mitz at webkit.org, leviw at google.com


After the fix of issue 52128, 
logical order of leaf boxes (getLeafBoxesInLogicalOrder in visible_units.cpp or RootInlineBox::determineLogicalOrderOfLeafBoxes() after fix of 78828) is not computed correctly for iso-8859-8.


    if (m_leafBoxesInLogicalOrder || renderer()->style()->visuallyOrdered())
          return;

should be changed to:
    if (m_leafBoxesInLogicalOrder) 
          return;
    if (renderer()->style()->visuallyOrdered()) && direction() == RTL)
          // simply reverse the boxes.

-- 
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