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

Side by Side Diff: chrome_frame/test/data/simple_object_focus_cf.html

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <!-- This page is meant to load inside Chrome Frame -->
3 <script>
4 // Upon receiving focus, pass the focus to the hello world button.
5 window.onfocus = function() {
6 document.getElementById("buttonToFocus").focus();
7 };
8 </script>
9 <body>
10 <button id="buttonToFocus"
11 onfocus="externalHost.postMessage('btnOnFocus');">
12 hello world</button>
13 <div id="statusPanel" style="border: 1px solid green; width: 100%">
14 Inside Chrome Frame....
15 </div>
16 </body>
17 </html>
OLDNEW
« no previous file with comments | « chrome_frame/test/data/simple_object_focus.html ('k') | chrome_frame/test/data/src_property_frame1.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698