Index: Source/core/css/StylePropertySet.cpp |
diff --git a/Source/core/css/StylePropertySet.cpp b/Source/core/css/StylePropertySet.cpp |
index 18e52e58d230cf57c6042460157c6248e4f49337..a9f394e72724d10aede094cdaa4b778329994d99 100644 |
--- a/Source/core/css/StylePropertySet.cpp |
+++ b/Source/core/css/StylePropertySet.cpp |
@@ -555,22 +555,4 @@ PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create( |
return adoptRefWillBeNoop(new MutableStylePropertySet(properties, count)); |
} |
-String StylePropertySet::PropertyReference::cssName() const |
-{ |
- return getPropertyNameString(id()); |
-} |
- |
-String StylePropertySet::PropertyReference::cssText() const |
-{ |
- StringBuilder result; |
- result.append(cssName()); |
- result.appendLiteral(": "); |
- result.append(propertyValue()->cssText()); |
- if (isImportant()) |
- result.appendLiteral(" !important"); |
- result.append(';'); |
- return result.toString(); |
-} |
- |
- |
} // namespace blink |