| Index: third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-textarea.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-textarea.html b/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-textarea.html
|
| index 836b7db8dc22be84961cd17d3ff793f5aa900060..1a7130caf38057b7eb124f5092ba97f9217e7d74 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-textarea.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/spatial-navigation/snav-textarea.html
|
| @@ -85,8 +85,12 @@
|
|
|
| document.getElementById('start').value = "";
|
| var text = 'A text containing a space\nand a new line';
|
| - for (var i = 0; i < text.length; ++i)
|
| - eventSender.keyDown(text.charAt(i));
|
| + for (var i = 0; i < text.length; ++i) {
|
| + var key = text.charAt(i);
|
| + if (key == '\n')
|
| + key = 'Enter';
|
| + eventSender.keyDown(key);
|
| + }
|
| shouldBeEqualToString("document.getElementById('start').value", text);
|
|
|
| testRunner.notifyDone();
|
|
|