Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Tools / RebaselineLogServer / uploadform.html
1 <!DOCTYPE html>
2 <title>Update rebaseline logs</title>
3 <style>
4 html, body {
5     height: 100%;
6 }
7 body, form {
8     display: flex;
9     flex-direction: column;
10 }
11 form, textarea {
12     flex: 1;
13 }
14 </style>
15
16 <h1>Update logs</h1>
17 <p>This page is for manually testing the log server.</p>
18 <form accept="text/html" action="{{ update_log_url }}" enctype="multipart/form-data" method="post">
19     <div>
20         <label><input name="{{ new_entry_param }}" type="checkbox">Start a new log entry</label>
21         <input class=button type="submit" value="Upload">
22     </div>
23     <textarea name="{{ log_param }}" placeholder="Some logging data..."></textarea>
24     <textarea name="{{ command_param }}" placeholder="Command JSON..."></textarea>
25 </form>