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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/edit/edit-trimmed-attribute-value.html

Issue 2045603002: Handle the "key" field as opposed to keyIdentifier field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove initialization of the view 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/elements/edit/edit-trimmed-attribute-value.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-trimmed-attribute-value.html b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-trimmed-attribute-value.html
index f0e76220c10da67536735e1024dce0b91d437973..2daff35ee78a9e62b37f874fc2c3e9fb81da5d0b 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-trimmed-attribute-value.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/edit/edit-trimmed-attribute-value.html
@@ -19,12 +19,12 @@ function test()
InspectorTest.addResult("textContent when editing 'href'");
InspectorTest.addResult(treeElement.title.textContent);
- textElement.dispatchEvent(InspectorTest.createKeyEvent("U+0009"));
+ textElement.dispatchEvent(InspectorTest.createKeyEvent("Tab"));
InspectorTest.addResult("textContent after moving to 'id'");
InspectorTest.addResult(treeElement.title.textContent);
textElement = treeElement.listItemElement.getElementsByClassName("webkit-html-attribute")[1];
- textElement.dispatchEvent(InspectorTest.createKeyEvent("U+001B"));
+ textElement.dispatchEvent(InspectorTest.createKeyEvent("Escape"));
InspectorTest.addResult("textContent after canceling the edit (equal to the original one)");
InspectorTest.addResult(treeElement.title.textContent);

Powered by Google App Engine
This is Rietveld 408576698