| Index: third_party/WebKit/Source/devtools/front_end/Runtime.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/Runtime.js b/third_party/WebKit/Source/devtools/front_end/Runtime.js
|
| index bf40e92474e9f6101773278119ca03d3ea2ff619..61575b36c770bd328d7e34cba5430e41ec849a09 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/Runtime.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/Runtime.js
|
| @@ -80,7 +80,7 @@ function loadResourcePromise(url)
|
| */
|
| function normalizePath(path)
|
| {
|
| - if (path.indexOf("..") === -1 && path.indexOf('.') === -1)
|
| + if (path.indexOf("..") === -1 && path.indexOf(".") === -1)
|
| return path;
|
|
|
| var normalizedSegments = [];
|
|
|