Index: third_party/WebKit/Source/core/frame/Deprecation.cpp |
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp |
index 5de1b1284ffe90743f4d718e5e0eeb9ee1159c6f..90782d215b103e29d6b30272fbe7d6b0155a7bc4 100644 |
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp |
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp |
@@ -424,6 +424,16 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) { |
"the 'script-src' directive for Workers", |
M60, "5922594955984896"); |
+ case UseCounter::CanRequestURLHTTPContainingNewline: |
+ return String::format( |
+ "Resource requests whose URLs contain raw newline characters are " |
+ "deprecated, and may be blocked in %s. Please remove newlines from " |
+ "places like element attribute values in order to continue loading " |
+ "those resources. See " |
+ "https://www.chromestatus.com/features/5735596811091968 for more " |
+ "details.", |
+ milestoneString(M60)); |
+ |
// Features that aren't deprecated don't have a deprecation message. |
default: |
return String(); |