Index: third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatter.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatter.js b/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatter.js |
index d98fe5e87ed1a3a0dbabaf5513ac1962a4057e18..fa3662251c8f5b64f5ef25798e9ad3f666b4dd73 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatter.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/ScriptFormatter.js |
@@ -85,7 +85,7 @@ WebInspector.Formatter.positionToLocation = function(lineEndings, position) |
*/ |
WebInspector.ScriptFormatter = function(mimeType, content, callback) |
{ |
- content = content.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/^\uFEFF/, ''); |
+ content = content.replace(/\r\n?|[\n\u2028\u2029]/g, "\n").replace(/^\uFEFF/, ""); |
this._callback = callback; |
this._originalContent = content; |