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

Side by Side Diff: Source/core/html/RadioNodeList.cpp

Issue 198443003: Rename LiveNodeList::nodeMatches() to elementMatches() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/RadioNodeList.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 Motorola Mobility, Inc. All rights reserved. 2 * Copyright (c) 2012 Motorola Mobility, Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 ASSERT(testElement.hasTagName(objectTag) || testElement.isFormControlElement ()); 95 ASSERT(testElement.hasTagName(objectTag) || testElement.isFormControlElement ());
96 if (ownerNode().hasTagName(formTag)) { 96 if (ownerNode().hasTagName(formTag)) {
97 HTMLFormElement* formElement = toHTMLElement(testElement).formOwner(); 97 HTMLFormElement* formElement = toHTMLElement(testElement).formOwner();
98 if (!formElement || formElement != ownerNode()) 98 if (!formElement || formElement != ownerNode())
99 return false; 99 return false;
100 } 100 }
101 101
102 return testElement.getIdAttribute() == m_name || testElement.getNameAttribut e() == m_name; 102 return testElement.getIdAttribute() == m_name || testElement.getNameAttribut e() == m_name;
103 } 103 }
104 104
105 bool RadioNodeList::nodeMatches(const Element& testElement) const 105 bool RadioNodeList::elementMatches(const Element& element) const
106 { 106 {
107 if (m_onlyMatchImgElements) 107 if (m_onlyMatchImgElements)
108 return testElement.hasTagName(imgTag); 108 return element.hasTagName(imgTag);
109 109
110 if (!testElement.hasTagName(objectTag) && !testElement.isFormControlElement( )) 110 if (!element.hasTagName(objectTag) && !element.isFormControlElement())
111 return false; 111 return false;
112 112
113 if (testElement.hasTagName(inputTag) && toHTMLInputElement(testElement).isIm ageButton()) 113 if (element.hasTagName(inputTag) && toHTMLInputElement(element).isImageButto n())
114 return false; 114 return false;
115 115
116 return checkElementMatchesRadioNodeListFilter(testElement); 116 return checkElementMatchesRadioNodeListFilter(element);
117 } 117 }
118 118
119 } // namespace 119 } // namespace
120 120
OLDNEW
« no previous file with comments | « Source/core/html/RadioNodeList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698