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.
6 #include "core/css/CSSFunctionValue.h"
8 #include "wtf/text/StringBuilder.h"
12 String
CSSFunctionValue::customCSSText() const
15 result
.append(getValueName(m_valueID
));
17 result
.append(CSSValueList::customCSSText());
19 return result
.toString();