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

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

Issue 2100243002: Remove non-standardize key code names from event_sender. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix inspector tests that were missed by sed Created 4 years, 6 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-block-indent.html
diff --git a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-block-indent.html b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-block-indent.html
index de50cd6b6582a124235066ea2acb61e8f70cb839..dbcf3ba304aa9cb20c19e3c2f0933ed4ae523420 100644
--- a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-block-indent.html
+++ b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-block-indent.html
@@ -39,7 +39,7 @@ function test()
InspectorTest.setLineSelections(textEditor, [
{line: 0, column: 1}
]);
- InspectorTest.fakeKeyEvent(textEditor, "enter", [], dumpAndNext(next));
+ InspectorTest.fakeKeyEvent(textEditor, "Enter", [], dumpAndNext(next));
},
function testMulticursorCollapsedBlockExpanding(next)
@@ -50,7 +50,7 @@ function test()
{line: 0, column: 4},
{line: 1, column: 3}
]);
- InspectorTest.fakeKeyEvent(textEditor, "enter", [], dumpAndNext(next));
+ InspectorTest.fakeKeyEvent(textEditor, "Enter", [], dumpAndNext(next));
},
function testMulticursorCollapsedBlockNotExpanding(next)
@@ -60,7 +60,7 @@ function test()
{line: 0, column: 1},
{line: 1, column: 2}
]);
- InspectorTest.fakeKeyEvent(textEditor, "enter", [], dumpAndNext(next));
+ InspectorTest.fakeKeyEvent(textEditor, "Enter", [], dumpAndNext(next));
},
function testSingleCursorClosingBracketIndent(next)

Powered by Google App Engine
This is Rietveld 408576698