summaryrefslogtreecommitdiffstats
path: root/WebCore/css/CSSProperty.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/css/CSSProperty.cpp')
-rw-r--r--WebCore/css/CSSProperty.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/WebCore/css/CSSProperty.cpp b/WebCore/css/CSSProperty.cpp
index 61300a2..1e04da7 100644
--- a/WebCore/css/CSSProperty.cpp
+++ b/WebCore/css/CSSProperty.cpp
@@ -29,8 +29,6 @@ namespace WebCore {
String CSSProperty::cssText() const
{
- if (id() == CSSPropertyWebkitVariableDeclarationBlock)
- return m_value->cssText() + ";";
return String(getPropertyName(static_cast<CSSPropertyID>(id()))) + ": " + m_value->cssText() + (isImportant() ? " !important" : "") + "; ";
}