Chromium Code Reviews| Index: Source/core/css/MediaQueryExp.cpp |
| diff --git a/Source/core/css/MediaQueryExp.cpp b/Source/core/css/MediaQueryExp.cpp |
| index 1b8a8048e256bb05a2de1930c7577392a3fb6e0c..a7260d16cf7904170b34a02196238efa8c0803ba 100644 |
| --- a/Source/core/css/MediaQueryExp.cpp |
| +++ b/Source/core/css/MediaQueryExp.cpp |
| @@ -215,6 +215,8 @@ PassOwnPtrWillBeRawPtr<MediaQueryExp> MediaQueryExp::createIfValid(const String& |
| { |
| ASSERT(!mediaFeature.isNull()); |
| + // FIXME - Creation of CSSValue here may not be thread safe. |
|
eseidel
2014/04/15 18:47:03
I guess we can't turn this on until we fix this?
|
| + // It should be replaced by a different way to pass the values to MediaQueryEvaluator. |
| RefPtrWillBeRawPtr<CSSValue> cssValue = nullptr; |
| bool isValid = false; |
| String lowerMediaFeature = attemptStaticStringCreation(mediaFeature.lower()); |