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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-new-rule-tab.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/styles-3/styles-add-new-rule-tab.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-new-rule-tab.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-new-rule-tab.html
index e3b574a0f8aac94ffa33bf781ba3accb346cbb2b..490af5d6df1f4d04cfe4cfac844b2c7ff51ee2c0 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-new-rule-tab.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-new-rule-tab.html
@@ -32,9 +32,9 @@ function test()
var newProperty = section.addNewBlankProperty();
newProperty.startEditing();
textInputController.insertText("color");
- newProperty.nameElement.dispatchEvent(InspectorTest.createKeyEvent("U+0009")); // Tab
+ newProperty.nameElement.dispatchEvent(InspectorTest.createKeyEvent("Tab"));
textInputController.insertText("maroon");
- newProperty.valueElement.dispatchEvent(InspectorTest.createKeyEvent("U+0009")); // Tab
+ newProperty.valueElement.dispatchEvent(InspectorTest.createKeyEvent("Tab"));
InspectorTest.selectNodeAndWaitForStyles("other", step3);
}

Powered by Google App Engine
This is Rietveld 408576698