Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: chrome/test/data/android/content_view_focus/content_view_blur_focus.html

Issue 2779033004: [Android] Focus/Blur contents when window focus changes (Closed)
Patch Set: Use pause/resume instead of WindowFocusChanged Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <body>
4 <script>
5 window.onblur = function() { document.title='blurred' };
6 window.onfocus = function() { document.title='focused' };
7 document.title = 'initial';
8 </script>
9 </body>
10 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698