[Webkit-unassigned] [Bug 89479] New: Assertion for event's target is wrong.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 19 09:34:07 PDT 2012


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

           Summary: Assertion for event's target is wrong.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Event Handling
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: hayato at chromium.org
                CC: dglazkov at chromium.org, dominicc at chromium.org,
                    morrita at google.com, shinyak at chromium.org,
                    tasak at google.com
            Blocks: 89073


An assertion used in EventContext's constructor is wrong.

  ASSERT(!m_target || m_target->toNode() || accessible(m_target->toNode()));

'!' is missing. That should be:

  ASSERT(!m_target || !m_target->toNode() || accessible(m_target->toNode()));

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