Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Side by Side Diff: appengine/cmd/milo/frontend/expectations/buildbot-swarming.TestableBuild-Basic_successful_build.html

Issue 2109473005: Milo: Pending swarming builds (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-go@master
Patch Set: Cleanup, new test data, fix timing display Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3 3
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Test swarming build</title> 5 <title>Test swarming build</title>
6 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> 6 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css">
7 <script src="/static/common/js/time.js"></script> 7 <script src="/static/common/js/time.js"></script>
8 8
9 9
10 <body class="interface"> 10 <body class="interface">
(...skipping 18 matching lines...) Expand all
29 </p> 29 </p>
30 30
31 31
32 32
33 33
34 34
35 35
36 36
37 37
38 38
39 <h2>Steps and Logfiles:</h2> 39
40 <ol>
41
42 </ol>
43 40
44 </div> 41 </div>
45 42
46 <div class="column"> 43 <div class="column">
47 44
48 <h2>Build Properties:</h2> 45 <h2>Build Properties:</h2>
49 46
50 <table class="info" width="100%"> 47 <table class="info" width="100%">
51 <tr><th>Name</th><th>Value</th><th>Source</th></tr> 48 <tr><th>Name</th><th>Value</th><th>Source</th></tr>
52 49
53 50
54 </table> 51 </table>
55 52
56 53
57 54
58 <h2>Timing:</h2> 55 <h2>Timing:</h2>
59 <table class="info" width="100%"> 56 <table class="info" width="100%">
60 <tr class="alt"><td class="left">Start</td> 57 <tr class="alt"><td class="left">Start</td>
61 <td> 58 <td>
62 <span id="started-time">Monday, 02-Jan-06 15:04:05 UTC</span> 59 <span id="started-time">
60
61 Monday, 02-Jan-06 15:04:05 UTC
62
63 </span>
63 </td></tr> 64 </td></tr>
64 <tr><td class="left">End</td> 65 <tr><td class="left">End</td>
65 <td> 66 <td>
66 <span id="finished-time">Monday, 02-Jan-06 15:04:06 UTC</span> 67 <span id="finished-time">
68
69 Monday, 02-Jan-06 15:04:06 UTC
70
71 </span>
67 </td></tr> 72 </td></tr>
68 <tr class="alt"><td class="left">Elapsed</td> 73 <tr class="alt"><td class="left">Elapsed</td>
69 <td id="duration"> 74 <td id="duration">
70 1 secs 75
76 1 secs
77
71 </td></tr> 78 </td></tr>
72 </table> 79 </table>
73 80
74 </div> 81 </div>
75 82
76 83
77 84
78 </div> 85 </div>
79 </div> 86 </div>
80 87
81 <footer> 88 <footer>
82 <hr> 89 <hr>
83 <a href="https://github.com/luci">luci</a>, 90 <a href="https://github.com/luci">luci</a>,
84 working for the <a href="https://chromium.org/">Chromium</a> project.<br> 91 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
85 Page built: <b><span id="current-time">0001-02-03 04:05:06.000000007 &#43;00 00 UTC</span></b> 92 Page built: <b><span id="current-time">0001-02-03 04:05:06.000000007 &#43;00 00 UTC</span></b>
86 </footer> 93 </footer>
87 94
88 <script> 95 <script>
89 (function() { 96 (function() {
90 'use strict'; 97 'use strict';
91 var startedSpan = document.getElementById('started-time'); 98 var startedSpan = document.getElementById('started-time');
92 var finishedSpan = document.getElementById('finished-time'); 99 var finishedSpan = document.getElementById('finished-time');
93 startedSpan.textContent = milo.formatDate('2006-01-02T15:04:05.999999999Z'); 100 var started = milo.formatDate('2006-01-02T15:04:05.999999999Z');
94 finishedSpan.textContent = milo.formatDate('2006-01-02T15:04:06.999999999Z'); 101 var finished = milo.formatDate('2006-01-02T15:04:06.999999999Z');
102 if (started) {
103 startedSpan.textContent = started;
104 }
105 if (finished) {
106 finishedSpan.textContent = finished;
107 }
95 })(); 108 })();
96 </script> 109 </script>
97 110
98 <script> 111 <script>
99 (function () { 112 (function () {
100 'use strict'; 113 'use strict';
101 document.getElementById('current-time').textContent = milo.formatDate( 114 document.getElementById('current-time').textContent = milo.formatDate(
102 '0001-02-03 04:05:06.000000007 \x2b0000 UTC'); 115 '0001-02-03 04:05:06.000000007 \x2b0000 UTC');
103 })(); 116 })();
104 </script> 117 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698