Changeset 43451 in webkit
- Timestamp:
- May 9, 2009, 10:04:30 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r43446 r43451 1 2009-05-09 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Geoffrey Garen and Mark Rowe. 4 5 - test for https://bugs.webkit.org/show_bug.cgi?id=25666 6 Assertion failure in Node::setDocument() 7 (willMoveToNewOwnerDocumentWasCalled) when adopting a <form> element 8 9 * fast/dom/HTMLFormElement/adopt-assertion-expected.txt: Added. 10 * fast/dom/HTMLFormElement/adopt-assertion.html: Added. 11 1 12 2009-05-09 Geoffrey Garen <ggaren@apple.com> 2 13 -
trunk/WebCore/ChangeLog
r43442 r43451 1 2009-05-09 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Geoffrey Garen and Mark Rowe. 4 5 - fix https://bugs.webkit.org/show_bug.cgi?id=25666 6 Assertion failure in Node::setDocument() 7 (willMoveToNewOwnerDocumentWasCalled) when adopting a <form> element 8 9 Test: fast/dom/HTMLFormElement/adopt-assertion.html 10 11 * html/HTMLFormElement.cpp: 12 (WebCore::HTMLFormElement::willMoveToNewOwnerDocument): Overrides of 13 this method are required to call the base class implementation. Do it. 14 (WebCore::HTMLFormElement::didMoveToNewOwnerDocument): Ditto. 15 1 16 2009-03-29 Kevin Ollivier <kevino@theolliviers.com> 2 17 -
trunk/WebCore/html/HTMLFormElement.cpp
r43187 r43451 629 629 if (!m_autocomplete) 630 630 document()->unregisterForDocumentActivationCallbacks(this); 631 HTMLElement::willMoveToNewOwnerDocument(); 631 632 } 632 633 … … 635 636 if(m_autocomplete) 636 637 document()->registerForDocumentActivationCallbacks(this); 638 HTMLElement::didMoveToNewOwnerDocument(); 637 639 } 638 640
Note:
See TracChangeset
for help on using the changeset viewer.