Index: Source/core/inspector/InspectorStyleSheet.cpp |
=================================================================== |
--- Source/core/inspector/InspectorStyleSheet.cpp (revision 153577) |
+++ Source/core/inspector/InspectorStyleSheet.cpp (working copy) |
@@ -1433,8 +1433,7 @@ |
bool deprecated; |
String commentValue = ContentSearchUtils::findSourceURL(styleSheetText, ContentSearchUtils::CSSMagicComment, &deprecated); |
if (!commentValue.isEmpty()) { |
- if (deprecated) |
- m_pageAgent->page()->console()->addMessage(NetworkMessageSource, WarningMessageLevel, "\"/*@ sourceURL=\" source URL declaration is deprecated, \"/*# sourceURL=\" declaration should be used instead.", finalURL(), 0); |
+ // FIXME: add deprecated console message here. |
m_sourceURL = commentValue; |
return commentValue; |
} |
@@ -1487,8 +1486,7 @@ |
bool deprecated; |
String commentValue = ContentSearchUtils::findSourceMapURL(styleSheetText, ContentSearchUtils::CSSMagicComment, &deprecated); |
if (!commentValue.isEmpty()) { |
- if (deprecated) |
- m_pageAgent->page()->console()->addMessage(NetworkMessageSource, WarningMessageLevel, "\"/*@ sourceMappingURL=\" source mapping URL declaration is deprecated, \"/*# sourceMappingURL=\" declaration should be used instead.", finalURL(), 0); |
+ // FIXME: add deprecated console message here. |
return commentValue; |
} |
} |