| Index: Source/core/css/StylePropertySet.cpp
|
| diff --git a/Source/core/css/StylePropertySet.cpp b/Source/core/css/StylePropertySet.cpp
|
| index 352e0ee5040cb8ffee957f0298f0cad779e51bc2..4035b4ad65017510fe84805e97bcae935cc5ea6e 100644
|
| --- a/Source/core/css/StylePropertySet.cpp
|
| +++ b/Source/core/css/StylePropertySet.cpp
|
| @@ -594,7 +594,7 @@ String StylePropertySet::PropertyReference::cssName() const
|
| ASSERT(propertyValue()->isVariableValue());
|
| if (!propertyValue()->isVariableValue())
|
| return emptyString(); // Should not happen, but if it does, avoid a bad cast.
|
| - return "-webkit-var-" + static_cast<const CSSVariableValue*>(propertyValue())->name();
|
| + return "var-" + static_cast<const CSSVariableValue*>(propertyValue())->name();
|
| }
|
| return getPropertyNameString(id());
|
| }
|
|
|