• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!DOCTYPE html>
2<html>
3<head>
4<title>Upload Test Result File</title>
5<link type="text/css" rel="stylesheet" href="/stylesheets/form.css" />
6</head>
7<body>
8<h1>Upload Test Result File</h1>
9<form id="uploadForm" name="test_result_upload" accept="text/html" action="{{ upload_url }}" enctype="multipart/form-data" method="post">
10    <br>
11    <table>
12    <tr>
13        <td class=label><label>Master:</label></td>
14        <td><input class=inputtext type="text" name="master" placeholder="Chromium"/></td>
15    </tr>
16    <tr>
17        <td class=label><label>Builder:</label></td>
18        <td><input class=inputtext type="text" name="builder" placeholder="Webkit"/></td>
19    </tr>
20    <tr>
21        <td class=label><label>Test Type:</label></td>
22        <td><input class=inputtext type="text" name="testtype" placeholder="layout-tests"/></td>
23    </tr>
24    </table>
25    <br>
26    <div><input class=button type="checkbox" name="incremental">Incremental results, merge with server file.</div>
27    <br>
28    <div><input class=button type="file" name="file" multiple></div>
29    <br>
30    <div><input class=button type="submit" value="Upload"></div>
31</form>
32</body>
33</html>
34