Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/focus-button-osk-javascript.html
blob: 3b3519b25b17850280af69c99fee39d17313b4f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-type" content="text/html; charset=utf-8">
        <title>Focus OSK test case</title>
    </head>
    <body>

        <p>This page will be loaded without focusing anything and after clicking 
           the "Click me!" button the focus will be taken to the input field and 
           OSK should appear</p>

        <form action="." name="f" target="_top">
            <input maxlength=2048 name="q" value="" style="height: 200px; width: 500px;"/>
            <input type="button" value="Click me!" style="height: 200px; width: 200px;" onclick="javascript: document.f.q.focus()" />
        </form>
</body>
</html>