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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFormElement.cpp

Issue 1444533002: Correct UseCounter::FormNameAccessForImageElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use onlyMatchImg Created 5 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLFormElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFormElement.cpp b/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
index a552cb1b96bcde7af7115b992003a059aef77c43..6cd1c1e4f59c4b9dd881a8e98f8bbc972120c3f2 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
@@ -836,12 +836,14 @@ void HTMLFormElement::anonymousNamedGetter(const AtomicString& name, RadioNodeLi
getNamedElements(name, elements);
ASSERT(!elements.isEmpty());
+ bool onlyMatchImg = !elements.isEmpty() && isHTMLImageElement(*elements.first());
+ if (onlyMatchImg)
sof 2015/11/13 08:21:48 Hmm, what if the <img> element doesn't appear firs
tkent 2015/11/13 08:28:25 I'd like to count only cases where this function r
sof 2015/11/13 08:33:10 Yes, this looks correct & precise as-is -- step 2
+ UseCounter::count(document(), UseCounter::FormNameAccessForImageElement);
if (elements.size() == 1) {
returnValue.setElement(elements.at(0));
return;
}
- bool onlyMatchImg = !elements.isEmpty() && isHTMLImageElement(*elements.first());
returnValue.setRadioNodeList(radioNodeList(name, onlyMatchImg));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698