| 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)
|
| + 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));
|
| }
|
|
|
|
|