Index: Source/core/html/forms/RadioInputType.cpp |
diff --git a/Source/core/html/forms/RadioInputType.cpp b/Source/core/html/forms/RadioInputType.cpp |
index 9bfe52d6d293d4df45ee6b9b75fb52ab24a1f74e..4840b98320a63f54cd28729bb1fcffb6938995dc 100644 |
--- a/Source/core/html/forms/RadioInputType.cpp |
+++ b/Source/core/html/forms/RadioInputType.cpp |
@@ -195,9 +195,9 @@ bool RadioInputType::isRadioButton() const |
return true; |
} |
-bool RadioInputType::supportsIndeterminateAppearance() const |
+bool RadioInputType::shouldAppearIndeterminate() const |
{ |
- return false; |
+ return !element().checkedRadioButtonForGroup(); |
} |
} // namespace WebCore |