@@ -84,6 +84,11 @@
<div id="test_detail_view" title="Test details">
<span id="td_fetch" class="box-full">Fetch test by ID:
<span id="td_fetch_controls"></span>
+ </span><br>
+ <span id="td_comp_attr" class="box-full">
+ Compare this execution using attributes <span id="td_comp_attr_control"></span>
+ with previous executions of <span id="td_comp_name_control"></span>
+ <span id="td_comp_save_control"></span>
</span><br><br>
<div id="td_title" class="title"></div><br>
<div id="td_data">
@@ -110,6 +115,7 @@
<span class="field-name">Test labels:</span>
<span id="td_test_labels"></span><br>
<span id="td_attributes"></span><br>
+ <span id="td_analysis"></span><br>
<br>
<span class="field-name">Key log files:</span>
@@ -60,4 +60,11 @@ div.spreadsheet-cell-nonclickable {
.test-attributes .header table {
font-weight: bold;
-}
\ No newline at end of file
+}
+.test-analysis .content {
+ white-space: pre;
+ font-family: monospace;
+}
+.test-analysis .header table {
+ font-weight: bold;
+}
These are the HTML and css changes needed for the new results comparison feature. Signed-off-by: Dror Russo <drusso@redhat.com> --- frontend/client/src/autotest/public/TkoClient.html | 6 ++++++ frontend/client/src/autotest/public/tkoclient.css | 9 ++++++++- 2 files changed, 14 insertions(+), 1 deletions(-)