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

Side by Side Diff: milo/appengine/frontend/expectations/buildbot.build-Debug_page-_newline_1234.html

Issue 2886353002: Milo: Add an option to hide green steps (Closed)
Patch Set: retrain Created 3 years, 7 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 <html lang="en"> 4 <html lang="en">
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title> 6 <title>
7 7
8 Failed 8 Failed
9 9
10 - 10 -
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 </ul> 99 </ul>
100 100
101 101
102 102
103 103
104 104
105 105
106 106
107 <h2>Steps and Logfiles:</h2> 107 <h2>Steps and Logfiles:</h2>
108 <input type="checkbox" id="showHidden"> 108 Show:
109 <label for="showHidden">Show hidden <span id="numHidden"></span></label> 109 <input type="radio" name="hider" id="showAll"><label for="showAll">All</ label>
110 <ol id="steps" class="hide"> 110 <input type="radio" name="hider" id="showStandard" checked>
111 <label for="showStandard">Standard</label>
112 <input type="radio" name="hider" id="showInteresting">
113 <label for="showInteresting">Interesting Only</label>
114 <ol id="steps" class="standard">
111 115
112 116
113 117
114 118
115 119
116 120
117 <li class="verbosity-Normal"> 121 <li class="verbosity-Interesting">
118 <div class="status-Failure result"> 122 <div class="status-Failure result">
119 <b>steps</b> 123 <b>steps</b>
120 <span style="float:right" 124 <span style="float:right"
121 class="duration" 125 class="duration"
122 data-starttime="2016-06-27T23:30:30Z" 126 data-starttime="2016-06-27T23:30:30Z"
123 data-endtime="2016-06-27T23:50:06Z"> 127 data-endtime="2016-06-27T23:50:06Z">
124 ( 19 mins 36 secs )</span> 128 ( 19 mins 36 secs )</span>
125 <span> 129 <span>
126 <div class="step-text">line 1</div><div class="step-text">&nbsp; </div><div class="step-text">line 3</div> 130 <div class="step-text">line 1</div><div class="step-text">&nbsp; </div><div class="step-text">line 3</div>
127 </span> 131 </span>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 </td></tr> 174 </td></tr>
171 </table> 175 </table>
172 176
173 </div> 177 </div>
174 178
175 179
176 </div> 180 </div>
177 </div> 181 </div>
178 <script language="javascript"> 182 <script language="javascript">
179 $(document).ready(function() { 183 $(document).ready(function() {
180 var check = function(checked) { 184
181 var things = $("#steps"); 185 var check = function(filter) {
182 if (checked) { 186 $("#steps").removeClass("all standard interesting").addClass(filter)
183 $("#steps").removeClass("hide"); 187 }
184 } else { 188
185 $("#steps").addClass("hide"); 189 $("#showInteresting").click(function(e) {
190 check("interesting");
191 });
192 $("#showStandard").click(function(e) {
193 check("standard");
194 });
195 $("#showAll").click(function(e) {
196 check("all");
197 });
198
199 $("input[name='hider']").each(function(){
200 if ($(this).prop("checked") == true) {
201 $(this).click();
186 } 202 }
187 var numHidden = $(".verbosity-Hidden").length;
188 if (numHidden > 0) {
189 $("#numHidden").text("(" + numHidden + " hidden)");
190 } else {
191 $("#numHidden").text("");
192 }
193 };
194
195 check($("#showHidden").is(":checked"));
196 $("#showHidden").click(function(e) {
197 check($(this).is(":checked"));
198 }); 203 });
199 }); 204 });
200 </script> 205 </script>
201 206
202 <footer> 207 <footer>
203 <hr> 208 <hr>
204 <a href="https://github.com/luci">luci</a>, 209 <a href="https://github.com/luci">luci</a>,
205 working for the <a href="https://chromium.org/">Chromium</a> project.<br> 210 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
206 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b> 211 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
207 </footer> 212 </footer>
(...skipping 20 matching lines...) Expand all
228 <script> 233 <script>
229 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){ 234 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){
230 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o), 235 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o),
231 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m) 236 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m)
232 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga'); 237 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
233 238
234 ga('create', 'UA-12345-01', 'auto'); 239 ga('create', 'UA-12345-01', 'auto');
235 ga('send', 'pageview'); 240 ga('send', 'pageview');
236 </script> 241 </script>
237 242
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698