| Index: third_party/WebKit/LayoutTests/inspector/editor/text-editor-indent-autodetection.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-indent-autodetection.html b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-indent-autodetection.html
|
| index 2f58bb4f0972d153a7df8cf2ddddb7a3b52451b2..d65050fba552f1c03b24638b8c2688d93a9643b3 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-indent-autodetection.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-indent-autodetection.html
|
| @@ -17,7 +17,7 @@ function test()
|
| textEditor.setMimeType("text/javascript");
|
| textEditor.setReadOnly(false);
|
| textEditor.element.focus();
|
| - WebInspector.settingForTest("textEditorAutoDetectIndent").set(true);
|
| + Common.settingForTest("textEditorAutoDetectIndent").set(true);
|
| function genericTest(snippetName, next)
|
| {
|
| var command = "codeSnippet('" + snippetName + "');";
|
| @@ -26,7 +26,7 @@ function test()
|
| {
|
| textEditor.setText(result.value);
|
| var indent = textEditor.indent();
|
| - var description = indent === WebInspector.TextUtils.Indent.TabCharacter ? "Tab" : indent.length + " spaces";
|
| + var description = indent === Common.TextUtils.Indent.TabCharacter ? "Tab" : indent.length + " spaces";
|
| InspectorTest.addResult("Autodetected indentation for " + snippetName + ": " +
|
| description);
|
| next();
|
|
|