Index: Source/core/svg/SVGFEColorMatrixElement.cpp |
diff --git a/Source/core/svg/SVGFEColorMatrixElement.cpp b/Source/core/svg/SVGFEColorMatrixElement.cpp |
index 695032ee324b86277330702d0303df799bbb06b6..6c396e822d4d8991b49918c8caa2d33e9a5a3d2f 100644 |
--- a/Source/core/svg/SVGFEColorMatrixElement.cpp |
+++ b/Source/core/svg/SVGFEColorMatrixElement.cpp |
@@ -154,7 +154,7 @@ PassRefPtr<FilterEffect> SVGFEColorMatrixElement::build(SVGFilterBuilder* filter |
} |
} else { |
RefPtr<SVGNumberList> values = m_values->currentValue(); |
- size_t size = values->numberOfItems(); |
+ size_t size = values->length(); |
if ((filterType == FECOLORMATRIX_TYPE_MATRIX && size != 20) |
|| (filterType == FECOLORMATRIX_TYPE_HUEROTATE && size != 1) |