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

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

Issue 2769843003: DevTools: split text_utils out of common module (Closed)
Patch Set: rebaseline Created 3 years, 9 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 d65050fba552f1c03b24638b8c2688d93a9643b3..4f516c1c29022106eb549c09213beb473fda50bc 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
@@ -26,7 +26,7 @@ function test()
{
textEditor.setText(result.value);
var indent = textEditor.indent();
- var description = indent === Common.TextUtils.Indent.TabCharacter ? "Tab" : indent.length + " spaces";
+ var description = indent === TextUtils.TextUtils.Indent.TabCharacter ? "Tab" : indent.length + " spaces";
InspectorTest.addResult("Autodetected indentation for " + snippetName + ": " +
description);
next();

Powered by Google App Engine
This is Rietveld 408576698