[Webkit-unassigned] [Bug 205706] New: Remove never enabled used assertion in HTMLTextFormControlElement::indexForPosition().

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 2 19:16:38 PST 2020


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

            Bug ID: 205706
           Summary: Remove never enabled used assertion in
                    HTMLTextFormControlElement::indexForPosition().
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: DOM
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: mark.lam at apple.com

The assertion was guarded by a #ifndef ASSERT_DISABLED.  ASSERT_DISABLED is always defined, either as 0 or 1.  Hence, this assertion code is never ever built.  Changing the #ifndef ASSERT_DISABLED to #if !ASSERT_DISABLED results in a build error.  We should either fix this assertion, or remove it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200103/9ab2af32/attachment-0001.htm>


More information about the webkit-unassigned mailing list