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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-blank-property.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-blank-property.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-blank-property.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-blank-property.html
index fcc9b76b763d6da598bcbc5f90878d1e64c3ee5e..7fa361c75bc46b0c63801557a768d183e3ec9639 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-blank-property.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-add-blank-property.html
@@ -25,14 +25,14 @@ function test()
treeElement.valueElement.textContent = "1px";
treeElement.valueElement.firstChild.select();
- treeElement.valueElement.dispatchEvent(InspectorTest.createKeyEvent("Up"));
+ treeElement.valueElement.dispatchEvent(InspectorTest.createKeyEvent("ArrowUp"));
InspectorTest.waitForStyleApplied(incrementProperty);
}
function incrementProperty()
{
// Increment again.
- treeElement.valueElement.dispatchEvent(InspectorTest.createKeyEvent("Up"));
+ treeElement.valueElement.dispatchEvent(InspectorTest.createKeyEvent("ArrowUp"));
InspectorTest.waitForStyleApplied(commitProperty);
}

Powered by Google App Engine
This is Rietveld 408576698