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

Unified Diff: Source/web/WebInputElement.cpp

Issue 200723002: Use new is*Element() helper functions more in web/ code (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 side-by-side diff with in-line comments
Download patch
Index: Source/web/WebInputElement.cpp
diff --git a/Source/web/WebInputElement.cpp b/Source/web/WebInputElement.cpp
index 117e4cac5be9cf150f43a649f54554371681e820..e11deb62a2a81c85a9a965a5589ef9531d81bcab 100644
--- a/Source/web/WebInputElement.cpp
+++ b/Source/web/WebInputElement.cpp
@@ -215,7 +215,7 @@ WebInputElement::operator PassRefPtr<HTMLInputElement>() const
WebInputElement* toWebInputElement(WebElement* webElement)
{
- if (!webElement->unwrap<Element>()->hasTagName(HTMLNames::inputTag))
+ if (!isHTMLInputElement(*webElement->unwrap<Element>()))
return 0;
return static_cast<WebInputElement*>(webElement);

Powered by Google App Engine
This is Rietveld 408576698