716bdd67d93eeefa9ded6137baf221d6c19769cd
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.1.0 / tests / unit / init / dialog-load-test.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4         <meta charset="UTF-8" />
5         <title>jQuery Mobile Init Test Suite</title>
6         <script src="../../../js/jquery.tag.inserter.js"></script>
7         <script src="../jquery.setNameSpace.js"></script>
8         <script src="../../../tests/jquery.testHelper.js"></script>
9         <script src="../../../external/qunit.js"></script>
10         <script src="../../../external/requirejs/require.js"></script>
11         <script>
12                 $.testHelper.asyncLoad([
13                         [
14                                 "jquery.mobile.core",
15                         ],
16                         [       "jquery.mobile.init" ],
17                         [       "init_dialog.js" ]
18                 ]);
19         </script>
20
21         <link rel="stylesheet"  href="../../../css/themes/default/jquery.mobile.css"/>
22         <link rel="stylesheet" href="../../../external/qunit.css"/>
23
24         <script src="../swarminject.js"></script>
25         </script>
26 </head>
27 <body>
28
29 <h1 id="qunit-header">jQuery Mobile Init Test Suite</h1>
30 <h2 id="qunit-banner"></h2>
31 <h2 id="qunit-userAgent"></h2>
32 <ol id="qunit-tests">
33 </ol>
34
35 <div data-nstest-role="dialog" id="foo">
36         <label for="select-choice-0" class="select">Shipping method:</label>
37         <select name="select-choice-0" id="select-choice-1">
38                 <option value="standard">Standard: 7 day</option>
39                 <option value="rush">Rush: 3 days</option>
40                 <option value="express">Express: next day</option>
41                 <option value="overnight">Overnight</option>
42         </select>
43 </div>
44 </body>
45 </html>