source: Dev/trunk/src/client/dojox/mobile/tests/test_html-inputs.html

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 2.1 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4        <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
5        <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
6        <meta name="apple-mobile-web-app-capable" content="yes"/>
7        <title>many input fields</title>
8
9        <script type="text/javascript" src="../deviceTheme.js" data-dojo-config="mblThemeFiles: ['base']"></script>
10        <script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: true, mblAlwaysHideAddressBar: true"></script>
11
12        <script type="text/javascript">
13                require([
14                        "dojox/mobile/parser",
15                        "dojox/mobile",
16                        "dojox/mobile/compat",
17                        "dojox/mobile/ScrollableView"
18                ]);
19        </script>
20</head>
21<body style="visibility:hidden;">
22        <div data-dojo-type="dojox.mobile.View">
23                <div data-dojo-type="dojox.mobile.ScrollableView">
24                        <input type="text" value="1"><br>
25                        <input type="text" value="2"><br>
26                        <input type="text" value="3"><br>
27                        <input type="text" value="4"><br>
28                        <input type="text" value="5"><br>
29                        <input type="text" value="6"><br>
30                        <input type="text" value="7"><br>
31                        <input type="text" value="8"><br>
32                        <input type="text" value="9"><br>
33                        <input type="text" value="10"><br>
34                        <input type="text" value="11"><br>
35                        <input type="text" value="12"><br>
36                        <input type="text" value="13"><br>
37                        <input type="text" value="14"><br>
38                        <input type="text" value="15"><br>
39                        <input type="text" value="16"><br>
40                        <input type="text" value="17"><br>
41                        <input type="text" value="18"><br>
42                        <input type="text" value="19"><br>
43                        <input type="text" value="20"><br>
44                        <input type="text" value="21"><br>
45                        <input type="text" value="22"><br>
46                        <input type="text" value="23"><br>
47                        <input type="text" value="24"><br>
48                        <input type="text" value="25"><br>
49                        <input type="text" value="26"><br>
50                        <input type="text" value="27"><br>
51                        <input type="text" value="28"><br>
52                        <input type="text" value="29"><br>
53                        <input type="text" value="30"><br>
54                        <input type="text" value="31"><br>
55                        <input type="text" value="32"><br>
56                </div>
57        </div>
58</body>
59</html>
Note: See TracBrowser for help on using the repository browser.