Tokentextarea: Fix issues
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.1.0 / tests / unit / dialog / index-count.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4         <meta charset="utf-8">
5         <meta name="viewport" content="width=device-width, initial-scale=1">
6         <title>jQuery Mobile Dialog Test Suite</title>
7         <script src="../../../external/requirejs/require.js"></script>
8         <script src="../../../js/jquery.tag.inserter.js"></script>
9         <script>
10                 $(document).bind('mobileinit',function(){
11                         // Expect content to inherit this theme when not explicitly set
12                         $.mobile.page.prototype.options.contentTheme = "d";
13                 });
14         </script>
15         <script src="../jquery.setNameSpace.js"></script>
16         <script src="../../jquery.testHelper.js"></script>
17         <script src="../../../external/qunit.js"></script>
18         <script>
19                 $.testHelper.asyncLoad([
20                         [
21                                 "jquery.mobile.dialog",
22                                 "jquery.mobile.page",
23                                 "jquery.mobile.page.sections"
24                         ],
25                         [ "jquery.mobile.init" ],
26                         [
27                                 "dialog_count.js"
28                         ]
29                 ]);
30         </script>
31
32
33         <link rel="stylesheet"  href="../../../css/themes/default/jquery.mobile.css"/>
34         <link rel="stylesheet" href="../../../external/qunit.css"/>
35
36         <script src="../swarminject.js"></script>
37 </head>
38 <body>
39
40 <h1 id="qunit-header">jQuery Mobile Dialog Test Suite</h1>
41 <h2 id="qunit-banner"></h2>
42 <h2 id="qunit-userAgent"></h2>
43 <ol id="qunit-tests">
44 </ol>
45
46 <div id="qunit-fixture">
47
48 <div id="foo-dialog" data-nstest-role="dialog" data-nstest-theme="b">
49         <div  data-nstest-role="header">
50                 <h1>Dialog</h1>
51         </div>
52         <div data-nstest-role="content" >
53         
54         </div>
55         <div data-nstest-role="footer">
56                 footer
57         </div>
58 </div>
59
60 </div>
61
62 </body>
63 </html>