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

Unified Diff: third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h

Issue 2594593002: INPUT element: Remove case-insensitive matching for radio button group names. (Closed)
Patch Set: Created 4 years 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
Index: third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
diff --git a/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h b/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
index f093983bf5021f55fb954a4ec000c825c6740a49..6df3f0023b6455fae7a79fa4707b771aa86edded 100644
--- a/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
+++ b/third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.h
@@ -47,8 +47,7 @@ class RadioButtonGroupScope {
unsigned groupSizeFor(const HTMLInputElement*) const;
private:
- using NameToGroupMap =
- HeapHashMap<AtomicString, Member<RadioButtonGroup>, CaseFoldingHash>;
+ using NameToGroupMap = HeapHashMap<AtomicString, Member<RadioButtonGroup>>;
Member<NameToGroupMap> m_nameToGroupMap;
};
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | third_party/WebKit/Source/core/html/forms/RadioButtonGroupScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698