Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / core / css / CSSFunctionValue.cpp
blob2ce9e4d1f6a57fbd18c8919f4908dc11046b75f6
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "config.h"
6 #include "core/css/CSSFunctionValue.h"
8 #include "wtf/text/StringBuilder.h"
10 namespace blink {
12 String CSSFunctionValue::customCSSText() const
14 StringBuilder result;
15 result.append(getValueName(m_valueID));
16 result.append('(');
17 result.append(CSSValueList::customCSSText());
18 result.append(')');
19 return result.toString();