[Webkit-unassigned] [Bug 30291] New: When effectAllowed = "uninitialized", incorrect dropEffect returned

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Oct 11 18:15:33 PDT 2009


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

           Summary: When effectAllowed = "uninitialized", incorrect
                    dropEffect returned
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebCore Misc.
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: dbates at webkit.org
                CC: eric at webkit.org, aroben at apple.com, snej at chromium.org


Following up from bug #30107, when effectAllowed = "uninitialized", the
returned dropEffect is incorrect when the specified dropEffect is "copy",
"move" or "link".

Currently, the resulting drop effect is determined by the followings mapping
when effectAllowed == "uninitialized":

dropEffect:        Actual drop effect:    Expected drop effect:
"none"     -----------> "none"            "none"
"copy"     -----------> "none"            "copy"
"move"     -----------> "none"            "move"
"link"     -----------> "none"            "link"
"dummy"    -----------> "none"            "none"

As per section 7.9.2 of the HTML 5 specification
<http://dev.w3.org/html5/spec/Overview.html#the-dragevent-and-datatransfer-interfaces>,
when effectAllowed = "uninitialized" the resulting dropEffect should be the
user-specified dropEffect (i.e. "copy", "move", "link") and "none" for any
other case.

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