Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: third_party/WebKit/LayoutTests/inspector/editor/text-editor-indent-autodetection.html

Issue 2238883004: DevTools: Split off SourcesTextEditor from CodeMirrorTextEditor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge and move decorations to CMTE Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}

Powered by Google App Engine
This is Rietveld 408576698