Chromium Code Reviews| Index: chrome/test/data/android/content_view_focus/content_view_blur_focus.html |
| diff --git a/chrome/test/data/android/content_view_focus/content_view_blur_focus.html b/chrome/test/data/android/content_view_focus/content_view_blur_focus.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..72c407cdc7a95ed10c6f353b524e0e6d45b56146 |
| --- /dev/null |
| +++ b/chrome/test/data/android/content_view_focus/content_view_blur_focus.html |
| @@ -0,0 +1,10 @@ |
| +<html> |
| +<head> |
| + <body> |
| + <script> |
| + window.onblur = function() { document.title='blurred' }; |
| + window.onfocus = function() { document.title='focused' }; |
| + document.title = 'initial'; |
| + </script> |
| + </body> |
| +</html> |