| 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);
|
|
|
|
|