| Index: third_party/WebKit/Source/core/svg/SVGStringList.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.h b/third_party/WebKit/Source/core/svg/SVGStringList.h
|
| index 756e4a8cc11043e00ea592d6a594bd60dd2a37b7..f03826aa03e870153fe4b277198335ce315d44c2 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGStringList.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGStringList.h
|
| @@ -43,13 +43,16 @@ class SVGStringListTearOff;
|
| // Implementation of SVGStringList spec:
|
| // http://www.w3.org/TR/SVG/single-page.html#types-InterfaceSVGStringList
|
| // See SVGStringListTearOff for actual Javascript interface.
|
| -// Unlike other SVG*List implementations, SVGStringList is NOT tied to SVGString.
|
| +// Unlike other SVG*List implementations, SVGStringList is NOT tied to
|
| +// SVGString.
|
| // SVGStringList operates directly on DOMString.
|
| //
|
| // In short:
|
| // SVGStringList has_a Vector<String>.
|
| -// SVGStringList items are exposed to Javascript as DOMString (not SVGString) as in the spec.
|
| -// SVGString is used only for boxing values for non-list string property SVGAnimatedString,
|
| +// SVGStringList items are exposed to Javascript as DOMString (not SVGString)
|
| +// as in the spec.
|
| +// SVGString is used only for boxing values for non-list string property
|
| +// SVGAnimatedString,
|
| // and not used for SVGStringList.
|
| class SVGStringList final : public SVGPropertyHelper<SVGStringList> {
|
| public:
|
| @@ -61,7 +64,8 @@ class SVGStringList final : public SVGPropertyHelper<SVGStringList> {
|
|
|
| const Vector<String>& values() const { return m_values; }
|
|
|
| - // SVGStringList DOM Spec implementation. These are only to be called from SVGStringListTearOff:
|
| + // SVGStringList DOM Spec implementation. These are only to be called from
|
| + // SVGStringListTearOff:
|
| unsigned long length() { return m_values.size(); }
|
| void clear() { m_values.clear(); }
|
| void initialize(const String&);
|
|
|