| Index: third_party/WebKit/LayoutTests/editing/caret/caret-color-010.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/caret/caret-color-010.html b/third_party/WebKit/LayoutTests/editing/caret/caret-color-010.html
|
| index 21494ee90726253380e105d495dbfc276483089d..a734f8a2b7d2b95d840a6ae53653dae8647b9d47 100644
|
| --- a/third_party/WebKit/LayoutTests/editing/caret/caret-color-010.html
|
| +++ b/third_party/WebKit/LayoutTests/editing/caret/caret-color-010.html
|
| @@ -19,5 +19,10 @@
|
| <body>
|
| <p>Test passes if, when the input field below is focused for editing, the text insertion caret is green.</p>
|
| <p>The shape of the caret, and whether it flashes, are not part of the test.</p>
|
| - <input autofocus></input>
|
| + <input id="test"></input>
|
| + <script>
|
| + window.onload = function() {
|
| + document.getElementById("test").focus();
|
| + }
|
| + </script>
|
| </body>
|
|
|