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

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

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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 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();

Powered by Google App Engine
This is Rietveld 408576698