UnitTC: jQuery path has been fixed
[platform/framework/web/web-ui-fw.git] / tests / unit-tests-runner / result.php
1 <html>
2         <head>
3                 <script type="text/javascript" src="../../build/tizen-web-ui-fw/latest/js/jquery.js"></script>
4                 <script type="text/javascript" src="cookie.js"></script>
5                 <script>
6                         $(document).ready( function() {
7                                 $("#os").text( getCookie("OS") );
8                                 $("#browser").text( getCookie("Browser") );
9                                 $("#version").text( getCookie("Version") );
10
11                                 $("#total").text( getCookie("TizenT") );
12                                 $("#pass").text( getCookie("TizenP") );
13                                 $("#failed").text( getCookie("TizenF") );
14                                 $("#time").text( getCookie("TizenR") );
15
16                         });
17                 </script>
18         </head>
19         <body>
20                 <h1>Test Report</h1>
21                 <div>
22                         <table style="width:50%;font-size:20px">
23                                 <tr style="background:lightgray">
24                                         <td colspan="2">Device Information<td>
25                                 </tr>
26                                 <tr>
27                                         <td>Operation System</td>
28                                         <td><span id="os"></span></td>
29                                 </tr>
30                                 <tr>
31                                         <td>Browser Information</td>
32                                         <td><span id="browser"></span></td>
33                                 </tr>
34                                 <tr>
35                                         <td>Versions</td>
36                                         <td><span id="version"></span></td>
37                                 </tr>
38                         </table>
39                 </div>
40                 <br>
41                 <br>
42                 <div>
43                         <table style="width:50%;font-size:20px">
44                                 <tr style="background:lightgray">
45                                         <td colspan="2">Test summary<td>
46                                 </tr>
47                                 <!--
48                                 <tr>
49                                         <td>Test name</td>
50                                         <td><span><?=$testname?></span></td>
51                                 </tr>
52                                 -->
53                                 <tr>
54                                         <td>Tests total</td>
55                                         <td><span id="total"></span></td>
56                                 </tr>
57                                 <tr>
58                                         <td>Tests Passed</td>
59                                         <td><span id="pass"></span></td>
60                                 </tr>
61                                 <tr>
62                                         <td>Tests Failed</td>
63                                         <td><span id="failed"></span></td>
64                                 </tr>
65                                 <tr>
66                                         <td>Time(m seconds)</td>
67                                         <td><span id="time"></span></td>
68                                 </tr>
69                         </table>
70                 </div>
71         </body>
72 </html>