Chromium Code Reviews| 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 37b203ad354ee11362b752c1cc8782e18574e043..395bbf664572f21c9a8d0bf6a6a1a72d8dba5f02 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 |
| @@ -25,9 +25,9 @@ function test() |
| function step2(result) |
| { |
| textEditor.setText(result.value); |
| - var indent = textEditor.indent(); |
| + var indent = textEditor._indent(); |
|
lushnikov
2016/08/22 19:47:04
why this change?
einbinder
2016/08/23 18:21:49
It wasn't used externally except in tests, but I m
|
| var description = indent === WebInspector.TextUtils.Indent.TabCharacter ? "Tab" : indent.length + " spaces"; |
| - InspectorTest.addResult("Autodetected indentation for " + snippetName + ": " + |
| + InspectorTest.addResult("Autodetected indentation for " + snippetName + ": " + |
| description); |
| next(); |
| } |