| Index: third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js
|
| index 2d8398195a560f341a5acf1326e6838cbf35bcbb..108b5d0987555bdda1d5bac9d01fb9ce8238ec7f 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js
|
| @@ -8,7 +8,7 @@ InspectorTest.replaceInSource = function(sourceFrame, string, replacement)
|
| var column = line.indexOf(string);
|
| if (column === -1)
|
| continue;
|
| - range = new WebInspector.TextRange(i, column, i, column + string.length);
|
| + range = new Common.TextRange(i, column, i, column + string.length);
|
| var newRange = sourceFrame._textEditor.editRange(range, replacement);
|
| break;
|
| }
|
|
|