Changeset 119473 in webkit
- Timestamp:
- Jun 5, 2012, 2:34:35 AM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dom/Document.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r119471 r119473 1 2012-06-05 Kent Tamura <tkent@chromium.org> 2 3 Remove unused function: Document::formElements 4 https://bugs.webkit.org/show_bug.cgi?id=88272 5 6 Reviewed by Kentaro Hara. 7 8 No new tests. No behavior change. 9 10 * dom/Document.h: 11 (Document): remove formElements(). It was used for radio group 12 validation, but the current code doesn't use it any more. 13 1 14 2012-06-05 Kenichi Ishibashi <bashi@chromium.org> 2 15 -
trunk/Source/WebCore/dom/Document.h
r119330 r119473 542 542 bool hasStateForNewFormElements() const; 543 543 bool takeStateForFormElement(AtomicStringImpl* name, AtomicStringImpl* type, String& state); 544 typedef ListHashSet<HTMLFormControlElementWithState*, 64> FormElementListHashSet;545 const FormElementListHashSet* formElements() const { return &m_formElementsWithState; }546 544 547 545 void registerFormElementWithFormAttribute(FormAssociatedElement*); … … 1332 1330 StyleSheetCandidateListHashSet m_styleSheetCandidateNodes; // All of the nodes that could potentially provide stylesheets to the document (<link>, <style>, <?xml-stylesheet>) 1333 1331 1332 typedef ListHashSet<HTMLFormControlElementWithState*, 64> FormElementListHashSet; 1334 1333 FormElementListHashSet m_formElementsWithState; 1335 1334 typedef ListHashSet<RefPtr<FormAssociatedElement>, 32> FormAssociatedElementListHashSet;
Note:
See TracChangeset
for help on using the changeset viewer.