[Webkit-unassigned] [Bug 28632] Unable to drag Keepvid.com bookmarklet (to bookmarks bar)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Aug 24 10:59:05 PDT 2009


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


Victor Wang <victorw at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |victorw at chromium.org




--- Comment #1 from Victor Wang <victorw at chromium.org>  2009-08-24 10:59:04 PDT ---
The reason why this bookmark can't be dragged is because it has child node. The
current webkit code does not allow a node to be dragged if it has child node:
bool EventHandler::shouldDragAutoNode(Node* node, const IntPoint& point) const
{
    if (!node || node->hasChildNodes() || !m_frame->view())
        return false;
    ...
}

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