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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.h

Issue 2152643002: SELECT element: Introduce HTMLSelectElement::optionAtListIndex(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLSelectElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.h b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
index 22d506a4a72083a5a362eb78605b8dac090758c0..f4fa8c787a0821e13d13e53a439bb3f4a0e1ae8a 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
@@ -241,6 +241,9 @@ private:
void setIndexToSelectOnCancel(int listIndex);
void setSuggestedOption(HTMLOptionElement*);
+ // Returns nullptr if listIndex is out of bounds, or it doesn't point an
+ // HTMLOptionElement.
+ HTMLOptionElement* optionAtListIndex(int listIndex) const;
enum SkipDirection {
SkipBackwards = -1,
SkipForwards = 1
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLSelectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698