| Index: Source/core/inspector/InspectorStyleSheet.cpp
|
| diff --git a/Source/core/inspector/InspectorStyleSheet.cpp b/Source/core/inspector/InspectorStyleSheet.cpp
|
| index 6e2f832288c61192aaea1a696996182574f29f06..d0a81fed8d0dac2111410b813062de518dc0d32c 100644
|
| --- a/Source/core/inspector/InspectorStyleSheet.cpp
|
| +++ b/Source/core/inspector/InspectorStyleSheet.cpp
|
| @@ -551,7 +551,7 @@ PassRefPtr<TypeBuilder::Array<TypeBuilder::CSS::CSSComputedStyleProperty> > Insp
|
| bool InspectorStyle::setPropertyText(unsigned index, const String& propertyText, bool overwrite, String* oldText, ExceptionState& es)
|
| {
|
| ASSERT(m_parentStyleSheet);
|
| - DEFINE_STATIC_LOCAL(String, bogusPropertyName, (ASCIILiteral("-webkit-boguz-propertee")));
|
| + DEFINE_STATIC_LOCAL(String, bogusPropertyName, ("-webkit-boguz-propertee"));
|
|
|
| if (!m_parentStyleSheet->ensureParsedDataReady()) {
|
| es.throwDOMException(NotFoundError);
|
| @@ -871,7 +871,7 @@ Vector<String> InspectorStyle::longhandProperties(const String& shorthandPropert
|
|
|
| NewLineAndWhitespace& InspectorStyle::newLineAndWhitespaceDelimiters() const
|
| {
|
| - DEFINE_STATIC_LOCAL(String, defaultPrefix, (ASCIILiteral(" ")));
|
| + DEFINE_STATIC_LOCAL(String, defaultPrefix, (" "));
|
|
|
| if (m_formatAcquired)
|
| return m_format;
|
|
|