[Webkit-unassigned] [Bug 110375] Add client callbacks to notify of changes of associated form controls

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Mar 17 16:47:29 PDT 2013


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





--- Comment #88 from Adam Barth <abarth at webkit.org>  2013-03-17 16:49:53 PST ---
(From update of attachment 192285)
View in context: https://bugs.webkit.org/attachment.cgi?id=192285&action=review

> Source/WebCore/dom/Document.cpp:6077
> +    if (!frame() || !frame()->page()->chrome()->client()->shouldNotifyOnFormChanges())

Do we not need to null-check page here?

> Source/WebCore/dom/Document.cpp:6084
> +void Document::didAssociateFormControlsTimerFired(Timer<Document>*)

Usually we ASSERT_USED that the argument we get is the timer we expect (in this case m_didAssociateFormControlsTimer).

> Source/WebCore/dom/Document.cpp:6088
> +    frame()->page()->chrome()->client()->didAssociateFormControls(m_associatedFormControls);

or here?

> Source/WebCore/dom/Document.cpp:6089
> +    m_associatedFormControls.clear();

I would recommend swapping this set into a local variable before calling didAssociateFormControls in case the client callback ends up calling didAssociateFormControl.  Re-entrancy bugs can be nasty.

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