UnitTC: Pass,error count save method has been changed
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / tests / unit / core / index.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 Core Test Suite</title>
7
8         <script src="../../../external/requirejs/require.js"></script>
9         <script src="../../../js/jquery.tag.inserter.js"></script>
10         <script src="../jquery.setNameSpace.js"></script>
11         <script src="../../jquery.testHelper.js"></script>
12         <script src="../../../external/qunit.js"></script>
13         <script>
14                 $.testHelper.asyncLoad([
15                         [
16                                 "jquery.mobile.core"
17                         ],
18                         [ "jquery.mobile.init" ],
19                         [
20                                 "core.js"
21                                 // Scroll function to operate asynchronously, this testcases check the async function synchronously.
22                                 // e.g.
23                                 // $(window).scrollTop(1000); <- scrollTop operate asynchronously
24                                 // ok($(window).scrollTop() > 0, $(window).scrollTop()); <-  can be problematic
25                                 /*"core_scroll.js"*/
26                         ]
27                 ]);
28         </script>
29         <link rel="stylesheet"  href="../../../css/themes/default/jquery.mobile.css" />
30         <link rel="stylesheet" href="../../../external/qunit.css"/>
31
32         <script src="../swarminject.js"></script>
33         <script src="../../../../../../tests/jqm-tchelper/tizen.testHelper.js"></script>
34 </head>
35 <body>
36
37 <h1 id="qunit-header">jQuery Mobile Core Test Suite</h1>
38 <h2 id="qunit-banner"></h2>
39 <h2 id="qunit-userAgent"></h2>
40 <ol id="qunit-tests">
41 </ol>
42
43 <div  data-nstest-role="page">
44 </div>
45
46 <div id="qunit-fixtures">
47   <div id="parent"></div>
48   <div id="dependent"></div>
49   <div id="encoded">foo&gt;</div>
50   <div id="unencoded"><script>var foo;</script></div>
51
52   <div id="parent-page" data-nstest-role="page">
53     <div id="page-child"></div>
54   </div>
55
56   <div id="parent-dialog" data-nstest-role="dialog">
57     <div id="dialog-child"></div>
58   </div>
59 </div>
60
61 <div id="hijackable">
62         <a href="#" id="hijacked-link"></a>
63         <a href="#" id="unhijacked-link-by-attr" data-nstest-ajax="false"></a>
64 </div>
65
66 <div id="not-hijackable" data-nstest-ajax="false">
67         <a href="#" id="unhijacked-link-by-parent"></a>
68 </div>
69 </body>
70 </html>