OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
5 <style> | 5 <style> |
6 body { | 6 body { |
7 background-color: #fff; | 7 background-color: #fff; |
8 color: #333; | 8 color: #333; |
9 font-family: Verdana, sans-serif; | 9 font-family: Verdana, sans-serif; |
10 font-size: 10px; | 10 font-size: 10px; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 {% include "javascript/main_html.js" %} | 68 {% include "javascript/main_html.js" %} |
69 </script> | 69 </script> |
70 </head> | 70 </head> |
71 <body> | 71 <body> |
72 <div> | 72 <div> |
73 <h2 id="summary-header"></h2> | 73 <h2 id="summary-header"></h2> |
74 {% for tb_value in tb_values %} | 74 {% for tb_value in tb_values %} |
75 {% include 'template/table.html' %} | 75 {% include 'template/table.html' %} |
76 {% endfor %} | 76 {% endfor %} |
77 </div> | 77 </div> |
78 </br> | 78 {% if feedback_url %} |
79 <a href="{{feedback_url}}" target="_blank"><b>Feedback</b></a> | 79 </br> |
80 </body> | 80 <a href="{{feedback_url}}" target="_blank"><b>Feedback</b></a> |
| 81 </body> |
| 82 {%- endif %} |
81 <script> | 83 <script> |
82 sortSuiteTableByFailedTestCases(); | 84 sortSuiteTableByFailedTestCases(); |
83 showSuiteTableOnlyWithReplaceState(); | 85 showSuiteTableOnlyWithReplaceState(); |
84 // Enable sorting for each column of tables. | 86 // Enable sorting for each column of tables. |
85 Array.prototype.slice.call(document.getElementsByTagName('th')) | 87 Array.prototype.slice.call(document.getElementsByTagName('th')) |
86 .forEach(function(head) { | 88 .forEach(function(head) { |
87 head.addEventListener( | 89 head.addEventListener( |
88 "click", | 90 "click", |
89 function() { sortByColumn(head); }); | 91 function() { sortByColumn(head); }); |
90 } | 92 } |
91 ); | 93 ); |
92 setBrowserBackButtonLogic(); | 94 setBrowserBackButtonLogic(); |
93 setTableCellsAsClickable(); | 95 setTableCellsAsClickable(); |
94 </script> | 96 </script> |
95 </html> | 97 </html> |
OLD | NEW |