| Index: Source/core/inspector/InspectorCSSAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorCSSAgent.cpp b/Source/core/inspector/InspectorCSSAgent.cpp
|
| index 99a5fac902cbabec04abcdc81294aa8b53f32531..45205fe957eb60e2bb5d5479d5a42d635521d48f 100644
|
| --- a/Source/core/inspector/InspectorCSSAgent.cpp
|
| +++ b/Source/core/inspector/InspectorCSSAgent.cpp
|
| @@ -111,10 +111,10 @@ private:
|
|
|
| static unsigned computePseudoClassMask(JSONArray* pseudoClassArray)
|
| {
|
| - DEFINE_STATIC_LOCAL(String, active, (ASCIILiteral("active")));
|
| - DEFINE_STATIC_LOCAL(String, hover, (ASCIILiteral("hover")));
|
| - DEFINE_STATIC_LOCAL(String, focus, (ASCIILiteral("focus")));
|
| - DEFINE_STATIC_LOCAL(String, visited, (ASCIILiteral("visited")));
|
| + DEFINE_STATIC_LOCAL(String, active, ("active"));
|
| + DEFINE_STATIC_LOCAL(String, hover, ("hover"));
|
| + DEFINE_STATIC_LOCAL(String, focus, ("focus"));
|
| + DEFINE_STATIC_LOCAL(String, visited, ("visited"));
|
| if (!pseudoClassArray || !pseudoClassArray->length())
|
| return PseudoNone;
|
|
|
|
|