
Some xpath parsers get confused by the explicit < and > characters. Signed-off-by: Mateusz Kozlowski <mateusz.kozlowski@solidigm.com>
38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
<!--
|
|
Copyright(c) 2019-2021 Intel Corporation
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>Setup</title>
|
|
<link rel="stylesheet" type="text/css" href="../main.css"/>
|
|
<meta charset="UTF-8"/>
|
|
<script src="../main.js"></script>
|
|
</head>
|
|
<body onload="onLoadDocument();">
|
|
<div class="floating">
|
|
<b>View: </b>
|
|
<select id="mode-selector" onchange="selectMode();">
|
|
<option style="background-color: white; color: black;" value="info">Info</option>
|
|
<option style="background-color: white; color: black" value="debug">Debug</option>
|
|
</select>
|
|
<b>Errors: </b>
|
|
<button onclick="previousError()"><</button>
|
|
<select id="error-list-selector" onchange="errorSelected('error-list-selector')">
|
|
<option value="top">-empty-</option>
|
|
</select>
|
|
<button onclick="nextError()">></button>
|
|
</div>
|
|
<br/>
|
|
<a name="top">
|
|
<h1 class="iteration-title" style="border-bottom: 4px solid rgba(255, 0, 0, 1)">Test summary</h1>
|
|
</a>
|
|
<div class="iteration-status">Iteration status: [STATUS]</div>
|
|
<div class="iteration-execution-time">Execution time: [time] [s]</div>
|
|
<section class="iteration-chapters" id="iteration-chapters">
|
|
<h2>Groups:</h2>
|
|
</section>
|
|
</body>
|
|
</html>
|