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

Side by Side Diff: milo/appengine/frontend/expectations/buildbot.build-Debug_page-_CrWinGoma_30608.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 Success 8 Success
9 9
10 - 10 -
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 </ul> 101 </ul>
102 102
103 103
104 104
105 105
106 106
107 107
108 108
109 <h2>Steps and Logfiles:</h2> 109 <h2>Steps and Logfiles:</h2>
110 <input type="checkbox" id="showHidden"> 110 Show:
111 <label for="showHidden">Show hidden <span id="numHidden"></span></label> 111 <input type="radio" name="hider" id="showAll">
112 <ol id="steps" class="hide"> 112 <label for="showAll">All</label>
113 <input type="radio" name="hider" id="showStandard" checked>
114 <label for="showStandard">Standard</label>
115 <input type="radio" name="hider" id="showInteresting">
116 <label for="showInteresting">Interesting Only</label>
117 <ol id="steps" class="standard">
113 118
114 119
115 120
116 121
117 122
118 123
119 <li class="verbosity-Normal"> 124 <li class="verbosity-Normal">
120 <div class="status-Success result"> 125 <div class="status-Success result">
121 <b>steps</b> 126 <b>steps</b>
122 <span style="float:right" 127 <span style="float:right"
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 1334
1330 </li> 1335 </li>
1331 1336
1332 </ol> 1337 </ol>
1333 </div> 1338 </div>
1334 1339
1335 </div> 1340 </div>
1336 </div> 1341 </div>
1337 <script language="javascript"> 1342 <script language="javascript">
1338 $(document).ready(function() { 1343 $(document).ready(function() {
1339 var check = function(checked) { 1344
1340 var things = $("#steps"); 1345 var check = function(className) {
1341 if (checked) { 1346 $("#steps").removeClass("all standard interesting").addClass(className)
1342 $("#steps").removeClass("hide"); 1347 }
1343 } else { 1348
1344 $("#steps").addClass("hide"); 1349 $("#showInteresting").click(function(e) {
1350 check("interesting");
1351 });
1352 $("#showStandard").click(function(e) {
1353 check("standard");
1354 });
1355 $("#showAll").click(function(e) {
1356 check("all");
1357 });
1358
1359 $("input[name='hider']").each(function(){
1360 if ($(this).prop("checked")) {
1361 $(this).click();
1345 } 1362 }
1346 var numHidden = $(".verbosity-Hidden").length;
1347 if (numHidden > 0) {
1348 $("#numHidden").text("(" + numHidden + " hidden)");
1349 } else {
1350 $("#numHidden").text("");
1351 }
1352 };
1353
1354 check($("#showHidden").is(":checked"));
1355 $("#showHidden").click(function(e) {
1356 check($(this).is(":checked"));
1357 }); 1363 });
1358 }); 1364 });
1359 </script> 1365 </script>
1360 1366
1361 <footer> 1367 <footer>
1362 <hr> 1368 <hr>
1363 <a href="https://github.com/luci">luci</a>, 1369 <a href="https://github.com/luci">luci</a>,
1364 working for the <a href="https://chromium.org/">Chromium</a> project.<br> 1370 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
1365 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b> 1371 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
1366 </footer> 1372 </footer>
(...skipping 20 matching lines...) Expand all
1387 <script> 1393 <script>
1388 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){ 1394 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){
1389 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o), 1395 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o),
1390 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m) 1396 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m)
1391 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga'); 1397 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
1392 1398
1393 ga('create', 'UA-12345-01', 'auto'); 1399 ga('create', 'UA-12345-01', 'auto');
1394 ga('send', 'pageview'); 1400 ga('send', 'pageview');
1395 </script> 1401 </script>
1396 1402
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698