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

Side by Side Diff: content/test/data/textinput/ime_enable_disable_test.html

Issue 10912171: Introduce RenderWidgetHostViewWinTest for Tsf handling (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 years, 2 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
« no previous file with comments | « content/content_tests.gypi ('k') | ui/base/win/mock_tsf_bridge.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script type="text/javascript">
4 function text01_focus() {
5 document.getElementById('text01_id').focus();
6 return true;
7 }
8 function text02_focus() {
9 document.getElementById('text02_id').focus();
10 return true;
11 }
12 function password01_focus() {
13 document.getElementById('password01_id').focus();
14 return true;
15 }
16 function password02_focus() {
17 document.getElementById('password02_id').focus();
18 return true;
19 }
20 function onLoad() {
21 document.activeElement.blur();
22 }
23 </script>
24 </head>
25 <body onload="onLoad()">
26 <input type="text" id="text01_id">
27 <input type="text" id="text02_id">
28 <input type="password" id="password01_id">
29 <input type="password" id="password02_id">
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | ui/base/win/mock_tsf_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698