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

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"><label for="showAll">All</ label>
112 <ol id="steps" class="hide"> 112 <input type="radio" name="hider" id="showStandard" checked>
113 <label for="showStandard">Standard</label>
114 <input type="radio" name="hider" id="showInteresting">
115 <label for="showInteresting">Interesting Only</label>
116 <ol id="steps" class="standard">
113 117
114 118
115 119
116 120
117 121
118 122
119 <li class="verbosity-Normal"> 123 <li class="verbosity-Normal">
120 <div class="status-Success result"> 124 <div class="status-Success result">
121 <b>steps</b> 125 <b>steps</b>
122 <span style="float:right" 126 <span style="float:right"
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 1333
1330 </li> 1334 </li>
1331 1335
1332 </ol> 1336 </ol>
1333 </div> 1337 </div>
1334 1338
1335 </div> 1339 </div>
1336 </div> 1340 </div>
1337 <script language="javascript"> 1341 <script language="javascript">
1338 $(document).ready(function() { 1342 $(document).ready(function() {
1339 var check = function(checked) { 1343
1340 var things = $("#steps"); 1344 var check = function(filter) {
1341 if (checked) { 1345 $("#steps").removeClass("all standard interesting").addClass(filter)
1342 $("#steps").removeClass("hide"); 1346 }
1343 } else { 1347
1344 $("#steps").addClass("hide"); 1348 $("#showInteresting").click(function(e) {
1349 check("interesting");
1350 });
1351 $("#showStandard").click(function(e) {
1352 check("standard");
1353 });
1354 $("#showAll").click(function(e) {
1355 check("all");
1356 });
1357
1358 $("input[name='hider']").each(function(){
1359 if ($(this).prop("checked") == true) {
1360 $(this).click();
1345 } 1361 }
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 }); 1362 });
1358 }); 1363 });
1359 </script> 1364 </script>
1360 1365
1361 <footer> 1366 <footer>
1362 <hr> 1367 <hr>
1363 <a href="https://github.com/luci">luci</a>, 1368 <a href="https://github.com/luci">luci</a>,
1364 working for the <a href="https://chromium.org/">Chromium</a> project.<br> 1369 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> 1370 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
1366 </footer> 1371 </footer>
(...skipping 20 matching lines...) Expand all
1387 <script> 1392 <script>
1388 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){ 1393 (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), 1394 (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) 1395 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'); 1396 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
1392 1397
1393 ga('create', 'UA-12345-01', 'auto'); 1398 ga('create', 'UA-12345-01', 'auto');
1394 ga('send', 'pageview'); 1399 ga('send', 'pageview');
1395 </script> 1400 </script>
1396 1401
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698