[Webkit-unassigned] [Bug 24315] New: WMLInputElement.cpp produces build-time error

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Mar 2 21:32:33 PST 2009


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

           Summary: WMLInputElement.cpp produces build-time error
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows XP
            Status: UNCONFIRMED
          Severity: Critical
          Priority: P2
         Component: WebCore Misc.
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: journeyerhum at gmail.com


Writing of function below has error.

void WMLInputElement::defaultEventHandler(Event* evt)
{
..............
        RenderObject* r = renderer();
        if (r /*&& r->isEdited()*//*JJH*/) {
            dispatchEventForType(eventNames().changeEvent, true, false);

            // Refetch the renderer since arbitrary JS code run during onchange
can do anything, including destroying it.
            r = renderer();
        //    if (r)                                    /*JJH*/
        //        r->setEdited(false);  /*JJH*/
        }
..............
}

note blockings of code above commented with JJH.

Class RenderObject doesn't include function, isEdited(), setEdited()

To test WML page I only had to block out errornous code above.

I am testing with nightly build WebKit-r41348.


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list