summaryrefslogtreecommitdiffstats
path: root/content/test/data
diff options
context:
space:
mode:
authornona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-22 20:10:50 +0000
committernona@chromium.org <nona@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-22 20:10:50 +0000
commit0c3f07feb6a8ca0a05725d53618a56d0e1098617 (patch)
tree863357b037a422e3ead01b56f2e835a649942265 /content/test/data
parentc1a12d23112f5e564d40ecca617baa0330529370 (diff)
downloadchromium_src-0c3f07feb6a8ca0a05725d53618a56d0e1098617.zip
chromium_src-0c3f07feb6a8ca0a05725d53618a56d0e1098617.tar.gz
chromium_src-0c3f07feb6a8ca0a05725d53618a56d0e1098617.tar.bz2
Introduce RenderWidgetHostViewWinTest for Tsf handling
BUG=None TBR=avi TEST=try bots Review URL: https://chromiumcodereview.appspot.com/10912171 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@158189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/data')
-rw-r--r--content/test/data/textinput/ime_enable_disable_test.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/content/test/data/textinput/ime_enable_disable_test.html b/content/test/data/textinput/ime_enable_disable_test.html
new file mode 100644
index 0000000..336e289
--- /dev/null
+++ b/content/test/data/textinput/ime_enable_disable_test.html
@@ -0,0 +1,31 @@
+<html>
+ <head>
+ <script type="text/javascript">
+ function text01_focus() {
+ document.getElementById('text01_id').focus();
+ return true;
+ }
+ function text02_focus() {
+ document.getElementById('text02_id').focus();
+ return true;
+ }
+ function password01_focus() {
+ document.getElementById('password01_id').focus();
+ return true;
+ }
+ function password02_focus() {
+ document.getElementById('password02_id').focus();
+ return true;
+ }
+ function onLoad() {
+ document.activeElement.blur();
+ }
+ </script>
+ </head>
+ <body onload="onLoad()">
+ <input type="text" id="text01_id">
+ <input type="text" id="text02_id">
+ <input type="password" id="password01_id">
+ <input type="password" id="password02_id">
+ </body>
+</html>