[CherryPick] flex-grow should be 1 when flex:auto
[framework/web/webkit-efl.git] / Source / WebCore / css / ShadowValue.cpp
1 /**
2  * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3  * Copyright (C) 2004, 2005, 2006, 2009 Apple Computer, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 #include "config.h"
21 #include "ShadowValue.h"
22
23 #include "CSSPrimitiveValue.h"
24 #include "PlatformString.h"
25
26 namespace WebCore {
27
28 // Used for text-shadow and box-shadow
29 ShadowValue::ShadowValue(PassRefPtr<CSSPrimitiveValue> _x,
30     PassRefPtr<CSSPrimitiveValue> _y,
31     PassRefPtr<CSSPrimitiveValue> _blur,
32     PassRefPtr<CSSPrimitiveValue> _spread,
33     PassRefPtr<CSSPrimitiveValue> _style,
34     PassRefPtr<CSSPrimitiveValue> _color)
35     : CSSValue(ShadowClass)
36     , x(_x)
37     , y(_y)
38     , blur(_blur)
39     , spread(_spread)
40     , style(_style)
41     , color(_color)
42 {
43 }
44
45 String ShadowValue::customCssText() const
46 {
47     String text("");
48
49     if (color)
50         text += color->cssText();
51     if (x) {
52         if (!text.isEmpty())
53             text += " ";
54         text += x->cssText();
55     }
56     if (y) {
57         if (!text.isEmpty())
58             text += " ";
59         text += y->cssText();
60     }
61     if (blur) {
62         if (!text.isEmpty())
63             text += " ";
64         text += blur->cssText();
65     }
66     if (spread) {
67         if (!text.isEmpty())
68             text += " ";
69         text += spread->cssText();
70     }
71     if (style) {
72         if (!text.isEmpty())
73             text += " ";
74         text += style->cssText();
75     }
76
77     return text;
78 }
79
80 }