| Index: Source/core/css/CSSStyleRule.cpp
|
| diff --git a/Source/core/css/CSSStyleRule.cpp b/Source/core/css/CSSStyleRule.cpp
|
| index cdb7a92e15f460a7d3054bea2b605cb97a3c9563..83174405eed3fd5b7dda6611b8321d1cbede97b9 100644
|
| --- a/Source/core/css/CSSStyleRule.cpp
|
| +++ b/Source/core/css/CSSStyleRule.cpp
|
| @@ -113,7 +113,7 @@ String CSSStyleRule::cssText() const
|
| StringBuilder result;
|
| result.append(selectorText());
|
| result.appendLiteral(" { ");
|
| - String decls = m_styleRule->properties()->asText();
|
| + String decls = m_styleRule->properties().asText();
|
| result.append(decls);
|
| if (!decls.isEmpty())
|
| result.append(' ');
|
|
|