Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: Source/core/html/forms/CheckedRadioButtons.h

Issue 149173007: Handling radio group name as case insensitive (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to latest master Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/forms/radio/radio-group-name-case-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/CheckedRadioButtons.h
diff --git a/Source/core/html/forms/CheckedRadioButtons.h b/Source/core/html/forms/CheckedRadioButtons.h
index 97ceb47e7d39444e242367dff17bc18884a637a5..a6fa1b1af9e92ae8a3172995deee557e926cfaac 100644
--- a/Source/core/html/forms/CheckedRadioButtons.h
+++ b/Source/core/html/forms/CheckedRadioButtons.h
@@ -45,7 +45,7 @@ public:
bool isInRequiredGroup(HTMLInputElement*) const;
private:
- typedef HashMap<AtomicString, OwnPtr<RadioButtonGroup> > NameToGroupMap;
+ typedef HashMap<AtomicString, OwnPtr<RadioButtonGroup>, CaseFoldingHash> NameToGroupMap;
OwnPtr<NameToGroupMap> m_nameToGroupMap;
};
« no previous file with comments | « LayoutTests/fast/forms/radio/radio-group-name-case-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698