Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
index 1a52b21e6db3ad6dc24f78a46ace39a749f65a1f..937f5259f24390857e2b4b1a686277d36e754b3e 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp |
@@ -1658,6 +1658,11 @@ bool HTMLInputElement::supportLabels() const |
return m_inputType->isInteractiveContent(); |
} |
+bool HTMLInputElement::matchesDefaultPseudoClass() const |
+{ |
+ return m_inputType->matchesDefaultPseudoClass(); |
+} |
+ |
bool HTMLInputElement::shouldAppearChecked() const |
{ |
return checked() && m_inputType->isCheckable(); |