[Webkit-unassigned] [Bug 62266] New: [EFL] remove adjusting codes for zoom's center coordinate

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 7 22:41:43 PDT 2011


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

           Summary: [EFL] remove adjusting codes for zoom's center
                    coordinate
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit EFL
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: eunmi15.lee at samsung.com
                CC: demarchi at webkit.org


There are adjusting codes in the ewk_view_zoom_set and ewk_view_zoom_weak_set functions as follows:
    if (cx >= sd->view.w)
        cx = sd->view.w - 1;
    if (cy >= sd->view.h)
        cy = sd->view.h - 1;
    if (cx < 0)
        cx = 0;
    if (cy < 0)
        cy = 0;

But, it is possible that the application developers don't want to limit the zoom's center coordinate to the viewport for implementing some effects.
and center coordinate out of the viewport does not affect to the zoom operation.
So, I think we'd better to leave zoom's center coordinate freely.

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