| Index: chrome/test/data/instant_extended.html
|
| diff --git a/chrome/test/data/instant_extended.html b/chrome/test/data/instant_extended.html
|
| index c7173abbffd2000e273f097265e847adb0596748..ecdb3035420a6d358fc2ac01f0558a2b654d02b1 100644
|
| --- a/chrome/test/data/instant_extended.html
|
| +++ b/chrome/test/data/instant_extended.html
|
| @@ -61,11 +61,14 @@ function previousSuggestion() {
|
| function handleKeyPress(event) {
|
| var VKEY_UP = 0x26;
|
| var VKEY_DOWN = 0x28;
|
| + var VKEY_ESCAPE = 0x1B;
|
|
|
| if (event.keyCode == VKEY_DOWN) {
|
| nextSuggestion();
|
| } else if (event.keyCode == VKEY_UP) {
|
| previousSuggestion();
|
| + } else if (event.keyCode == VKEY_ESCAPE) {
|
| + suggestionIndex = -1;
|
| }
|
| }
|
|
|
|
|