OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 4 <head> |
| 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 6 <title>BuildBot: Chromium</title> |
| 7 <link rel="stylesheet" href="default.css" type="text/css" /> |
| 8 <script type="text/javascript"> |
| 9 // <![CDATA[ |
| 10 // |
| 11 |
| 12 // |
| 13 // Functions used to display the build status bubble on box click. |
| 14 // |
| 15 |
| 16 // show the build status box. This is called when the user clicks on a block. |
| 17 function showBuildBox(url, event) { |
| 18 // Find the current curson position. |
| 19 var cursorPosTop = (window.event ? window.event.clientY : event.pageY) |
| 20 var cursorPosLeft = (window.event ? window.event.clientX : event.pageX) |
| 21 |
| 22 // Offset the position by 5, to make the window appears under the cursor. |
| 23 cursorPosTop = cursorPosTop + document.body.scrollTop -5 ; |
| 24 cursorPosLeft = cursorPosLeft + document.body.scrollLeft - 5; |
| 25 |
| 26 // Move the div (hidden) under the cursor. |
| 27 var divBox = document.getElementById('divBox'); |
| 28 divBox.style.top = parseInt(cursorPosTop) + 'px'; |
| 29 divBox.style.left = parseInt(cursorPosLeft) + 'px'; |
| 30 |
| 31 // Reload the hidden frame with the build page we want to show. |
| 32 // The onload even on this frame will update the div and make it visible. |
| 33 document.getElementById("frameBox").src = url |
| 34 |
| 35 // We don't want to reload the page. |
| 36 return false; |
| 37 } |
| 38 |
| 39 // OnLoad handler for the iframe containing the build to show. |
| 40 function updateDiv(event) { |
| 41 // Get the frame innerHTML. |
| 42 var iframeContent = document.getElementById("frameBox").contentWindow.docume
nt.body.innerHTML; |
| 43 |
| 44 // If there is any content, update the div, and make it visible. |
| 45 if (iframeContent) { |
| 46 var divBox = document.getElementById('divBox'); |
| 47 divBox.innerHTML = iframeContent ; |
| 48 divBox.style.display = "block"; |
| 49 } |
| 50 } |
| 51 |
| 52 // Util functions to know if an element is contained inside another element. |
| 53 // We use this to know when we mouse out our build status div. |
| 54 function containsDOM (container, containee) { |
| 55 var isParent = false; |
| 56 do { |
| 57 if ((isParent = container == containee)) |
| 58 break; |
| 59 containee = containee.parentNode; |
| 60 } while (containee != null); |
| 61 |
| 62 return isParent; |
| 63 } |
| 64 |
| 65 // OnMouseOut handler. Returns true if the mouse moved out of the element. |
| 66 // It is false if the mouse is still in the element, but in a blank part of it, |
| 67 // like in an empty table cell. |
| 68 function checkMouseLeave(element, event) { |
| 69 if (element.contains && event.toElement) { |
| 70 return !element.contains(event.toElement); |
| 71 } |
| 72 else if (event.relatedTarget) { |
| 73 return !containsDOM(element, event.relatedTarget); |
| 74 } |
| 75 } |
| 76 |
| 77 // Creates a new cookie. |
| 78 function createCookie(name, value, day) { |
| 79 var date = new Date(); |
| 80 date.setTime(date.getTime() + (day * 24 * 60 * 60 * 1000)); |
| 81 var expires = "; expires=" + date.toGMTString(); |
| 82 document.cookie = name + "=" + value+expires + "; path=/"; |
| 83 } |
| 84 |
| 85 // Returns the vaue of a cookie, or null if it does not exist. |
| 86 function readCookie(name) { |
| 87 var begin = name + "="; |
| 88 var data = document.cookie.split(';'); |
| 89 for(var i = 0; i < data.length; i++) { |
| 90 var cookie = data[i]; |
| 91 while (cookie.charAt(0) == ' ') |
| 92 cookie = cookie.substring(1, cookie.length); |
| 93 if (cookie.indexOf(begin) == 0) |
| 94 return cookie.substring(begin.length, cookie.length); |
| 95 } |
| 96 |
| 97 return null; |
| 98 } |
| 99 |
| 100 // Deletes a cookie. |
| 101 function eraseCookie(name) { |
| 102 createCookie(name, "", -1); |
| 103 } |
| 104 |
| 105 // Hides all "details" and "comments" section. |
| 106 function collapse() { |
| 107 // Hide all Comments sections. |
| 108 var comments = document.querySelectorAll('.DevComment'); |
| 109 for(var i = 0; i < comments.length; i++) { |
| 110 comments[i].style.display = "none"; |
| 111 } |
| 112 |
| 113 // Hide all details sections. |
| 114 var details = document.querySelectorAll('.DevDetails'); |
| 115 for(var i = 0; i < details.length; i++) { |
| 116 details[i].style.display = "none"; |
| 117 } |
| 118 |
| 119 // Fix the rounding on the Revision box. (Lower right corner must be round) |
| 120 var revisions = document.querySelectorAll('.DevRev'); |
| 121 for(var i = 0; i < revisions.length; i++) { |
| 122 revisions[i].className = revisions[i].className + ' DevRevCollapse'; |
| 123 } |
| 124 |
| 125 // Fix the rounding on the last category box. (Lower left corner must be rou
nd) |
| 126 var status = document.querySelectorAll('.last'); |
| 127 for(var i = 0; i < status.length; i++) { |
| 128 status[i].className = status[i].className + ' DevStatusCollapse'; |
| 129 } |
| 130 |
| 131 // Create a cookie to remember that we want the view to be collapsed. |
| 132 createCookie('collapsed', 'true', 30) |
| 133 |
| 134 // Hide the collapse and the unmerge buttons. |
| 135 document.querySelectorAll('.collapse')[0].style.display = 'none' |
| 136 document.querySelectorAll('.unmerge')[0].style.display = 'none' |
| 137 |
| 138 // Activate the merge and expand buttons. |
| 139 document.querySelectorAll('.uncollapse')[0].style.display = 'inline' |
| 140 document.querySelectorAll('.merge')[0].style.display = 'inline' |
| 141 } |
| 142 |
| 143 // Expands the view. This is the opposite of "Collapse" |
| 144 function uncollapse() { |
| 145 unmerge(); |
| 146 |
| 147 // Make the comments visible. |
| 148 var comments = document.querySelectorAll('.DevComment'); |
| 149 for(var i = 0; i < comments.length; i++) { |
| 150 comments[i].style.display = ""; |
| 151 } |
| 152 |
| 153 // Make the details visible. |
| 154 var details = document.querySelectorAll('.DevDetails'); |
| 155 for(var i = 0; i < details.length; i++) { |
| 156 details[i].style.display = ""; |
| 157 } |
| 158 |
| 159 // Remove the round corner (lower right) for the Revision box. |
| 160 var revisions = document.querySelectorAll('.DevRev'); |
| 161 for(var i = 0; i < revisions.length; i++) { |
| 162 revisions[i].className = revisions[i].className.replace('DevRevCollapse'
, ''); |
| 163 } |
| 164 |
| 165 // Remoe the round corner (lower left) for the last category box. |
| 166 var status = document.querySelectorAll('.DevStatus'); |
| 167 for(var i = 0; i < status.length; i++) { |
| 168 status[i].className = status[i].className.replace('DevStatusCollapse', '
'); |
| 169 } |
| 170 |
| 171 // Delete the cookies that say that we want to be collapsed or merged. |
| 172 eraseCookie('collapsed') |
| 173 eraseCookie('merged') |
| 174 |
| 175 // Display the "collapse" and "merge" buttons. |
| 176 document.querySelectorAll('.collapse')[0].style.display = 'inline' |
| 177 document.querySelectorAll('.merge')[0].style.display = 'inline' |
| 178 |
| 179 // Remove the "uncollapse" and "unmerge" buttons. |
| 180 document.querySelectorAll('.uncollapse')[0].style.display = 'none' |
| 181 document.querySelectorAll('.unmerge')[0].style.display = 'none' |
| 182 } |
| 183 |
| 184 // Merge all the status boxes together. |
| 185 function merge() { |
| 186 collapse(); |
| 187 |
| 188 // Hide all the spacing. |
| 189 var spacing = document.querySelectorAll('.DevStatusSpacing'); |
| 190 for(var i = 0; i < spacing.length; i++) { |
| 191 spacing[i].style.display = "none"; |
| 192 } |
| 193 |
| 194 // Each boxes have, in the className, a tag that uniquely represents the |
| 195 // build where this data comes from. |
| 196 // Since we want to merge all the boxes coming from the same build, we |
| 197 // parse the document to find all the builds, and then, for each build, we |
| 198 // concatenate the boxes. |
| 199 |
| 200 var allTags = []; |
| 201 all = document.getElementsByTagName('*') |
| 202 for(var i = 0; i < all.length; i++) { |
| 203 var element = all[i]; |
| 204 start = element.className.indexOf('Tag') |
| 205 if (start != -1) { |
| 206 var className = "" |
| 207 end = element.className.indexOf(' ', start) |
| 208 if (end != -1) { |
| 209 className = element.className.substring(start, end); |
| 210 } else { |
| 211 className = element.className.substring(start); |
| 212 } |
| 213 allTags[className] = 1; |
| 214 } |
| 215 } |
| 216 |
| 217 // Mergeall tags that we found |
| 218 for (i in allTags) { |
| 219 var current = document.querySelectorAll('.' + i); |
| 220 |
| 221 // We do the work only if there is more than 1 box with the same |
| 222 // build. |
| 223 if (current.length > 1) { |
| 224 // Add the noround class to all the boxes. |
| 225 for(var i = 0; i < current.length; i++) { |
| 226 current[i].className = current[i].className + ' noround'; |
| 227 } |
| 228 |
| 229 // Add the begin class to the first box. |
| 230 current[0].className = current[0].className + ' begin'; |
| 231 |
| 232 // Add the end class to the last box. |
| 233 last = current.length - 1; |
| 234 current[last].className = current[last].className + ' end'; |
| 235 } |
| 236 } |
| 237 |
| 238 // Display the "unmerge" button. |
| 239 document.querySelectorAll('.unmerge')[0].style.display = 'inline' |
| 240 document.querySelectorAll('.uncollapse')[0].style.display = 'inline' |
| 241 |
| 242 // Remove the "merge" button. |
| 243 document.querySelectorAll('.collapse')[0].style.display = 'none' |
| 244 document.querySelectorAll('.merge')[0].style.display = 'none' |
| 245 |
| 246 // Create a cookie to remember that we want to be merged. |
| 247 createCookie('merged', 'true', 30) |
| 248 } |
| 249 |
| 250 // Un-merge the view. This is the opposite of "merge". |
| 251 function unmerge() { |
| 252 // We put back all the spacing. |
| 253 var spacing = document.querySelectorAll('.DevStatusSpacing'); |
| 254 for(var i = 0; i < spacing.length; i++) { |
| 255 spacing[i].style.display = ""; |
| 256 } |
| 257 |
| 258 // We remove the class added to all the boxes we modified. |
| 259 var noround = document.querySelectorAll('.noround'); |
| 260 for(var i = 0; i < noround.length; i++) { |
| 261 noround[i].className = noround[i].className.replace("begin", ''); |
| 262 noround[i].className = noround[i].className.replace("end", ''); |
| 263 noround[i].className = noround[i].className.replace("noround", ''); |
| 264 } |
| 265 |
| 266 // Delete the cookie, we don't want to be merged anymore. |
| 267 eraseCookie('merged') |
| 268 |
| 269 // Display the "merge" button. |
| 270 document.querySelectorAll('.merge')[0].style.display = 'inline' |
| 271 |
| 272 // Hide the "unmerge" button. |
| 273 document.querySelectorAll('.unmerge')[0].style.display = 'none' |
| 274 } |
| 275 |
| 276 function SetupView() { |
| 277 if (readCookie('merged')) { |
| 278 merge(); |
| 279 } else if (readCookie('collapsed')) { |
| 280 collapse(); |
| 281 } |
| 282 } |
| 283 |
| 284 document.addEventListener("DOMContentLoaded", SetupView, false); |
| 285 |
| 286 // ]]> |
| 287 </script> |
| 288 </head> |
| 289 <body class="interface"> |
| 290 <div style="text-align:right; float: right;"> |
| 291 <a href="https://www.google.com/accounts/ServiceLogin?service=ah&passive=tru
e&continue=https://appengine.google.com/_ah/conflogin%3Fcontinue%3Dhttps://c
hromium-build.appspot.com/p/chromium/console&ltmpl=gm&shdf=ChoLEgZhaG5hb
WUaDkNocm9taXVtIEJ1aWxkDBICYWgiFHIv83J48VD3Mlzg3YybgIqpV0R7KAEyFGspkZghorlGKUZfU
AeY_oik8mCU">Sign In</a> |
| 292 </div> |
| 293 <div class="header"> |
| 294 <a href="http://build.chromium.org/p/chromium/.">Home</a> |
| 295 - <a href="http://build.chromium.org/p/chromium/waterfall">Waterfall</a> |
| 296 - <a href="http://build.chromium.org/p/chromium/console">Console</a> |
| 297 - <a href="http://build.chromium.org/p/chromium/builders">Builders</a> |
| 298 - <a href="http://build.chromium.org/p/chromium/one_line_per_build">Recent Bui
lds</a> |
| 299 - <a href="http://build.chromium.org/p/chromium/buildslaves">Buildslaves</a> |
| 300 - <a href="http://build.chromium.org/p/chromium/changes">Changesources</a> |
| 301 - <a href="http://build.chromium.org/p/chromium/json/help">JSON API</a> |
| 302 - <a href="http://build.chromium.org/p/chromium/about">About</a> |
| 303 </div> |
| 304 <hr /> |
| 305 <script> |
| 306 /** |
| 307 * Pseudo namespace for chromium - keep it short because we are in a very |
| 308 * narrow scope for this file. |
| 309 * @type {Object} |
| 310 */ |
| 311 var c = {}; |
| 312 |
| 313 /** |
| 314 * Replaces html references with anchor tags to the same. |
| 315 * @param {String} className CSS class to operate on. |
| 316 */ |
| 317 function autoLink(className) { |
| 318 var comments = document.querySelectorAll(className); |
| 319 for(var i = 0; i < comments.length; i++) { |
| 320 comments[i].innerHTML = comments[i].innerHTML.replace( |
| 321 /https?:\/\/[^ \t\n<]*/g, '<a href="$&">$&</a>'); |
| 322 } |
| 323 }; |
| 324 |
| 325 window.addEventListener("load", function() { |
| 326 autoLink('.DevComment'); |
| 327 }, false); |
| 328 |
| 329 /** |
| 330 * This is the indicator for whether we are in console or waterfall |
| 331 * mode, or some future resource. |
| 332 * @type {String} |
| 333 */ |
| 334 c.viewtype = location.pathname.split('/').slice(-1); |
| 335 |
| 336 /** |
| 337 * Returns a search string portion including marker, or an empty string. |
| 338 * optional. |
| 339 * @param {String} opt_s A search string, or some form of emptiness. |
| 340 * @returns {!String} |
| 341 */ |
| 342 function search(opt_s) { |
| 343 return opt_s ? '?' + opt_s.replace(/^[?]/, '') : ''; |
| 344 }; |
| 345 |
| 346 /** |
| 347 * Replicates a string. |
| 348 * @param {Number} i A whole number of repetitions. |
| 349 * @param {String} x The string to be repeated. |
| 350 * @returns {!String} |
| 351 */ |
| 352 function repeat(i, x){ |
| 353 var t = '' |
| 354 for (j = 0; j < i; j++) { t += x; } |
| 355 return t; |
| 356 }; |
| 357 |
| 358 /** |
| 359 * A simple HTML table string. |
| 360 * @param {String} attributes A set of HTML attributes for the table. |
| 361 * @param {String} contents The contents. |
| 362 * @returns {!String} |
| 363 */ |
| 364 function table(attributes, contents) { |
| 365 return '<table ' + attributes + '>' + contents + '</table>\n'; |
| 366 }; |
| 367 |
| 368 /** |
| 369 * A simple HTML div string. |
| 370 * @param {String} attributes A set of HTML attributes for the div. |
| 371 * @param {String} contents The contents. |
| 372 * @returns {!String} |
| 373 */ |
| 374 function div(attributes, contents) { |
| 375 return '<div ' + attributes + '>' + contents + '</div>'; |
| 376 }; |
| 377 |
| 378 /** |
| 379 * A simple HTML table row string. |
| 380 * @param {String} attributes A set of HTML attributes for the table row. |
| 381 * @param {String} contents The contents. |
| 382 * @returns {!String} |
| 383 */ |
| 384 function tr(contents) { |
| 385 return '<tr>' + contents + '</tr>\n'; |
| 386 }; |
| 387 |
| 388 /** |
| 389 * A simple HTML table cell string. |
| 390 * @param {String} attributes A set of HTML attributes for the table cell. |
| 391 * @param {String} contents The contents. |
| 392 * @returns {!String} |
| 393 */ |
| 394 function td(attributes, contents) { |
| 395 return '<td ' + attributes + '>' + contents + '</td>'; |
| 396 }; |
| 397 |
| 398 /** |
| 399 * A simple HTML anchor string. |
| 400 * @param {String} url The value for the href. |
| 401 * @param {String} attributes A set of HTML attributes for the table. |
| 402 * @param {String} contents The contents. |
| 403 * @returns {!String} |
| 404 */ |
| 405 function a(url, contents, attributes) { |
| 406 return '<a>' + contents + '</a>'; |
| 407 }; |
| 408 |
| 409 /** |
| 410 * Gives an HTML anchor string to the specified URL, but of the same view |
| 411 * type as the current page. |
| 412 * @param {String} url The URL portion up to the view. |
| 413 * @param {String} search_opt A the query portion. |
| 414 * @param {String} contents The contents for the tag. |
| 415 * @returns {!String} |
| 416 */ |
| 417 function aView(url, search_opt, contents) { |
| 418 return a((url ? url + '/' : '') + c.viewtype + search(search_opt), |
| 419 contents, '') |
| 420 }; |
| 421 |
| 422 /** |
| 423 * A simple HTML iframe string. |
| 424 * @param {String} attributes A set of HTML attributes for the table. |
| 425 * @param {String} url The source of the iframe. |
| 426 * @returns {!String} the iframe or an empty string if noframe is specified. |
| 427 */ |
| 428 function iFrame(attributes, url) { |
| 429 if (window.location.href.search('noframe') == -1) { |
| 430 return '<iframe ' + attributes + ' src="' + url + '"></iframe>'; |
| 431 } |
| 432 return '' |
| 433 }; |
| 434 </script> |
| 435 <div class="Announcement"> |
| 436 <iframe width="100%" height="44" frameborder="0" scrolling="no" src="https://chr
omium-build.appspot.com/p/chromium-status/current"></iframe> |
| 437 <center style="padding: 0 7px"> |
| 438 <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-bottom-
left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-bottom-
right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2px
6px rgba(0, 0, 0, 0.6); -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -webki
t-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);"> |
| 439 <tr> |
| 440 <td width="29%"> |
| 441 <table valign="top" width="100%"> |
| 442 <tr> |
| 443 <td style="text-align: right;"> |
| 444 <b>Builds:</b> |
| 445 </td> |
| 446 <td> |
| 447 <a href="http://commondatastorage.googleapis.com/chromium-browser-continuous/ind
ex.html">continuous</a> | |
| 448 <a href="http://build.chromium.org/f/chromium/symsrv/index.html">s
ymbols</a> | |
| 449 <a href="http://chromium-status.appspot.com">status</a> |
| 450 </td> |
| 451 </tr> |
| 452 <tr> |
| 453 <td style="text-align: right;"> |
| 454 <b>Dashboards:</b> |
| 455 </td> |
| 456 <td> |
| 457 <a href="http://build.chromium.org/f/chromium/perf/dashboard/overview.html">perf
</a> | |
| 458 <a href="http://build.chromium.org/f/chromium/perf/dashboard/memor
y.html">memory</a> | |
| 459 <a href="http://build.chromium.org/f/chromium/perf/dashboard/sizes
.html">sizes</a> | |
| 460 <a href="http://build.chromium.org/f/chromium/coverage/">coverage<
/a> | |
| 461 <a href="http://build.chromium.org/f/chromium/flakiness/">flakines
s</a> | |
| 462 <a href="http://build.chromium.org/p/chromium/stats">stats</a> |
| 463 </td> |
| 464 </tr> |
| 465 <tr> |
| 466 <td style="text-align: right;"> |
| 467 <b>Chromium:</b> |
| 468 </td> |
| 469 <td> |
| 470 <a href="http://src.chromium.org/viewvc/chrome">sources</a> | |
| 471 <a href="http://codereview.chromium.org/">reviews</a> | |
| 472 <a href="http://code.google.com/p/chromium/issues/list?can=2&q
=&sort=pri+mstone&colspec=ID%20Stars%20Pri%20Area%20Type%20Status%20Summ
ary%20Modified%20Owner%20Mstone">bugs</a> | |
| 473 <a href="http://dev.chromium.org/Home">dev</a> | |
| 474 <a href="http://www.google.com/support/chrome/">support</a> |
| 475 </td> |
| 476 </tr> |
| 477 <tr> |
| 478 <td style="text-align: right;"> |
| 479 <b>Sheriffs:</b> |
| 480 </td> |
| 481 <td> |
| 482 <script>document.write('miket, perkj, vtl')</script>,<br /> |
| 483 <script>document.write('eugenis')</script>(Memory), |
| 484 <script>document.write('mseaborn')</script>(NaCl),<br /> |
| 485 <script>document.write('kerz')</script>(Perf), |
| 486 <script>document.write('ferringb, adlr')</script>, |
| 487 <script>document.write('petkov')</script>(CrOS),<br /> |
| 488 <script>document.write('pliard')</script>(Android), |
| 489 <script>document.write('droger')</script>, |
| 490 <script>document.write('lliabraa')</script>(iOS),<br /> |
| 491 <script>document.write('None (channel is sheriff)')</script>(GPU),<br /> |
| 492 <a href="https://www.google.com/calendar/render?cid=google.com_iqfka4i9asiva67vl
qqf1es094%40group.calendar.google.com">trooper schedule</a> |
| 493 </td> |
| 494 </tr> |
| 495 <tr> |
| 496 <td style="text-align: right;"> |
| 497 <b>Gardeners:</b> |
| 498 </td> |
| 499 <td> |
| 500 <script>document.write('eae, podivilov')</script>(WebKit), |
| 501 <script>document.write('None (channel is sheriff)')</script> |
| 502 (<a href="http://dev.chromium.org/developers/tree-sheriffs/chrome-
in-chromeos-gardening">ChromeOS</a>) |
| 503 </td> |
| 504 </tr> |
| 505 <tr> |
| 506 <td style="text-align: right;"> |
| 507 <b>Masters:</b> |
| 508 </td> |
| 509 <td colspan="2"> |
| 510 <script> |
| 511 document.write([ |
| 512 a("http://build.chromium.org/p/chromium/../tryserver.chromium/wa
terfall", "tryserver.chromium", ""), |
| 513 aView("http://build.chromium.org/p/chromium/../chromium.fyi", ""
, "chromium.fyi"), |
| 514 aView("http://build.chromium.org/p/chromium/../chromium.memory",
"", "chromium.memory"), |
| 515 aView("http://build.chromium.org/p/chromium/../chromium.memory.f
yi", "", "chromium.memory.fyi"), |
| 516 aView("http://build.chromium.org/p/chromium/../chromium.chromium
os", "", "chromium.chromiumos"), |
| 517 aView("http://build.chromium.org/p/chromium/../chromiumos", "",
"chromiumos"), |
| 518 aView("http://build.chromium.org/p/chromium/../client.nacl", "",
"client.nacl"), |
| 519 aView("http://build.chromium.org/p/chromium/../chromium.webkit",
"", "chromium.webkit")].join(' | ')); |
| 520 </script> |
| 521 </td> |
| 522 </tr> |
| 523 <tr> |
| 524 <td style="text-align: right;"> |
| 525 <b>Navigate:</b> |
| 526 </td> |
| 527 <td colspan="2"> |
| 528 <script> |
| 529 document.write([ |
| 530 a("http://dev.chromium.org/developers/testing/chromium-build-inf
rastructure/tour-of-the-chromium-buildbot", "about", ""), |
| 531 a("http://build.chromium.org/p/chromium/waterfall/help", "custom
ize", ""), |
| 532 a("http://build.chromium.org/p/chromium/waterfall", "waterfall",
""), |
| 533 a("http://build.chromium.org/p/chromium/console", "console", "")
, |
| 534 a("http://build.chromium.org/p/chromium/waterfall?show_events=tr
ue&failures_only=true", "failures", "")].join(' | ')); |
| 535 </script> |
| 536 </td> |
| 537 </tr> |
| 538 </table> |
| 539 </td> |
| 540 <td width="1" bgcolor="#CCCCCC"> |
| 541 </td> |
| 542 <td width="1%"> |
| 543 </td> |
| 544 <td width="70%"> |
| 545 <table width="100%"> |
| 546 <script language="javascript"> |
| 547 c.chromium = ''; |
| 548 c.win = ''; |
| 549 c.mac = ''; |
| 550 c.linux = ''; |
| 551 c.chromium_chromiumos = ''; |
| 552 c.memory = ''; |
| 553 c.memory_fyi = ''; |
| 554 c.perf = ''; |
| 555 c.cros = ''; |
| 556 c.chrome = ''; |
| 557 c.lkgr = ''; |
| 558 c.gpu = ''; |
| 559 c.gpu_fyi = ''; |
| 560 |
| 561 c.status = 'http://build.chromium.org/p/chromium/../chromium'; |
| 562 c.status_win = 'http://build.chromium.org/p/chromium/../chromium.win
'; |
| 563 c.status_mac = 'http://build.chromium.org/p/chromium/../chromium.mac
'; |
| 564 c.status_linux = 'http://build.chromium.org/p/chromium/../chromium.l
inux'; |
| 565 c.status_cros = 'http://build.chromium.org/p/chromium/../chromium.ch
romiumos'; |
| 566 c.status_memory = 'http://build.chromium.org/p/chromium/../chromium.
memory'; |
| 567 c.status_memory_fyi = 'http://build.chromium.org/p/chromium/../chrom
ium.memory.fyi'; |
| 568 c.status_chrome = 'http://build.chromium.org/p/chromium/../chromium.
chrome'; |
| 569 c.status_perf = 'http://build.chromium.org/p/chromium/../chromium.pe
rf'; |
| 570 c.status_lkgr = 'http://build.chromium.org/p/chromium/../chromium.lk
gr'; |
| 571 c.status_gpu = 'http://build.chromium.org/p/chromium/../chromium.gpu
'; |
| 572 c.status_gpu_fyi = 'http://build.chromium.org/p/chromium/../chromium
.gpu.fyi'; |
| 573 |
| 574 /** |
| 575 * Builds a reference for the iframe with boxes. |
| 576 * @param {String} x the name of the waterfall. |
| 577 * @returns {String} The URL. |
| 578 */ |
| 579 function BarUrl(x) { |
| 580 return 'https://chromium-build.appspot.com/p/' + x + |
| 581 '/horizontal_one_box_per_builder'; |
| 582 } |
| 583 c.bar = BarUrl('chromium') |
| 584 c.bar_win = BarUrl('chromium.win'); |
| 585 c.bar_mac = BarUrl('chromium.mac'); |
| 586 c.bar_linux = BarUrl('chromium.linux'); |
| 587 c.bar_memory = BarUrl('chromium.memory'); |
| 588 c.bar_memory_fyi = BarUrl('chromium.memory.fyi'); |
| 589 c.bar_perf = BarUrl('chromium.perf'); |
| 590 c.bar_chrome = BarUrl('chromium.chrome'); |
| 591 c.bar_lkgr = BarUrl('chromium.lkgr'); |
| 592 c.bar_cros = BarUrl('chromium.chromiumos'); |
| 593 c.bar_gpu = BarUrl('chromium.gpu'); |
| 594 c.bar_gpu_fyi = BarUrl('chromium.gpu.fyi'); |
| 595 |
| 596 |
| 597 /** |
| 598 * Joins URL and search terms. |
| 599 * @param {String} type The Url without the cgi search portion. |
| 600 * @param {String} content The parameters for the sub-selection |
| 601 * inside the master. Optional. |
| 602 * @returns {String} A completed URL. |
| 603 */ |
| 604 function GetUrl(type, content) { |
| 605 return type + search(content); |
| 606 } |
| 607 |
| 608 /** |
| 609 * Callback to replace the LKGR link with one that identifies |
| 610 * the current revision for the LKGR. |
| 611 */ |
| 612 function DisplayLKGR() { |
| 613 var xmlHttp = new XMLHttpRequest(); |
| 614 var lkgrPath = '/p/chromium.lkgr' + |
| 615 '/json/builders/Linux%20x64/builds/-1/as_text=1.jso
n'; |
| 616 var lkgrLink = document.getElementById('LKGRLink'); |
| 617 xmlHttp.open('GET', lkgrPath, false); |
| 618 xmlHttp.send(null); |
| 619 if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { |
| 620 var buildData; |
| 621 if (typeof (JSON) !== 'undefined' && |
| 622 typeof (JSON.parse) === 'function') { |
| 623 buildData = JSON.parse(xmlHttp.responseText); |
| 624 } else { |
| 625 buildData = eval('(' + xmlHttp.responseText + ')'); |
| 626 } |
| 627 var properties = buildData['properties']; |
| 628 for (var i = 0; i < properties.length; i++) { |
| 629 if (properties[i][0] == 'got_revision') { |
| 630 lkgrLink.innerHTML = 'LKGR<br>(' + properties[i][1] + ')'; |
| 631 return; |
| 632 } |
| 633 } |
| 634 } |
| 635 } |
| 636 |
| 637 c.default_iframe_properties = [ |
| 638 'width="100%"', |
| 639 'height="20"', |
| 640 'frameborder="0"', |
| 641 'scrolling="no"', |
| 642 ].join(' '); |
| 643 |
| 644 /** |
| 645 * The most detailed specification of a builder bar with boxes. |
| 646 * Reutrns an HTMLstring with 2 <td>s |
| 647 * @param {String} status_url URL portion for the title link. |
| 648 * @param {String} bar_url URL portion for the array of boxes. |
| 649 * @param {String} content specification for the references, e.g.. |
| 650 * @param {String} name what to call this bar. |
| 651 * @param {String} bar_properties extra attributes for the array |
| 652 * of boxes portion. |
| 653 * @param {String} link_properties extra attributes for the name |
| 654 * portion that is a link. |
| 655 * @returns {String} |
| 656 */ |
| 657 function HTMLBaseBar(status_url, bar_url, content, name, |
| 658 bar_properties, link_properties) { |
| 659 return td('', |
| 660 a(GetUrl(status_url, content), name, |
| 661 link_properties)) + |
| 662 td(bar_properties, |
| 663 iFrame(c.default_iframe_properties, |
| 664 GetUrl(bar_url, content))); |
| 665 } |
| 666 |
| 667 /** |
| 668 * The more common specification of a builder bar with boxes. |
| 669 * Presume to take an entire row. |
| 670 * @param {String} status_url URL portion for the title link. |
| 671 * @param {String} bar_url URL portion for the array of boxes. |
| 672 * @param {String} content specification for the references, e.g.. |
| 673 * @param {String} name what to call this bar. |
| 674 * @returns {String} |
| 675 */ |
| 676 function HTMLBar(status_url, bar_url, content, name) { |
| 677 return tr(HTMLBaseBar(status_url, bar_url, content, name, |
| 678 'width="99%" colspan=9', '')); |
| 679 } |
| 680 |
| 681 /** |
| 682 * A specification of a builder bar with boxes, which is one of |
| 683 * multiple in a row. |
| 684 * Note that since these are elements of a table, percents |
| 685 * can be irrelevant to the final layout. |
| 686 * @param {String} status_url URL portion for the title link. |
| 687 * @param {String} bar_url URL portion for the array of boxes. |
| 688 * @param {String} content specification for the references, e.g.. |
| 689 * @param {String} name what to call this bar. |
| 690 * @param {String} pc percent of the line to allocat to the boxes. |
| 691 * @returns {String} |
| 692 */ |
| 693 function HTMLSubBar(status_url, bar_url, content, name, pc) { |
| 694 return HTMLBaseBar(status_url, bar_url, content, name, |
| 695 'width="' + pc + '"', ''); |
| 696 } |
| 697 |
| 698 document.write(tr(td( |
| 699 'colspan=10 width="99%"', |
| 700 div( |
| 701 'class="closerbox" width="100%"', |
| 702 div('class="title" width="100%" height="10px"', |
| 703 a('http://chromium-status.appspot.com', 'Tree closers')) + |
| 704 table( |
| 705 'width="100%"', |
| 706 tr( |
| 707 HTMLBaseBar(c.status, c.bar, c.chromium, 'Chromium', |
| 708 'width="8%"') + |
| 709 HTMLBaseBar(c.status_win, c.bar_win, c.win, 'Win', |
| 710 'width="42%"') + |
| 711 HTMLBaseBar(c.status_mac, c.bar_mac, c.mac, 'Mac', |
| 712 'width="30%"') + |
| 713 HTMLBaseBar(c.status_linux, c.bar_linux, c.linux, |
| 714 'Linux', 'width="20%"')) + |
| 715 tr(HTMLBaseBar(c.status_cros, c.bar_cros, c.cros, |
| 716 'ChromiumOS', 'width="50%" colspan=3') + |
| 717 HTMLSubBar(c.status_chrome, c.bar_chrome, c.chrome, |
| 718 'Official', '30%') + |
| 719 HTMLSubBar(c.status_memory, c.bar_memory, c.memory, |
| 720 'Memory', '20%'))))))); |
| 721 |
| 722 document.write(tr( |
| 723 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, |
| 724 'LKGR', 'width="25%"', 'id="LKGRLink"') + |
| 725 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, |
| 726 'Perf', 'width="75%" colspan=5', ''))); |
| 727 |
| 728 document.write(tr( |
| 729 HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi, |
| 730 'Memory<br>FYI', 'width="100%" colspan=6', ''))); |
| 731 |
| 732 document.write(tr( |
| 733 HTMLBaseBar(c.status_gpu, c.bar_gpu, c.gpu, |
| 734 'GPU', 'width="80%"', '') + |
| 735 HTMLBaseBar(c.status_gpu_fyi, c.bar_gpu_fyi, c.gpu_fyi, |
| 736 'GPU FYI', 'width="20%" colspan=5', ''))); |
| 737 |
| 738 setTimeout('DisplayLKGR()', 100); |
| 739 </script> |
| 740 </table> |
| 741 </td> |
| 742 </tr> |
| 743 </table> |
| 744 </center> |
| 745 </div> |
| 746 <hr /> |
| 747 <div class="content"> |
| 748 <div align="center"> |
| 749 <table width="95%" class="Grid" border="0" cellspacing="0"> |
| 750 <tr> |
| 751 <td width="33%" align="left" class="left_align"> |
| 752 </td> |
| 753 <td width="33%" align="center" class="center_align"> |
| 754 <div align="center"> |
| 755 <table class="info"> |
| 756 <tr> |
| 757 <td>Legend: </td> |
| 758 <td class="legend success" title="All tests passed">Passed</td> |
| 759 <td class="legend failure" title="There is a new failure. Take a look!">Failed</
td> |
| 760 <td class="legend warnings" title="It was failing before, and it is still failin
g. Make sure you did not introduce new regressions">Failed Again</td> |
| 761 <td class="legend running" title="The tests are still running">Running</td> |
| 762 <td class="legend exception" title="Something went wrong with the test, there is
no result">Exception</td> |
| 763 <td class="legend offline" title="The builder is offline, as there are no slaves
connected to it">Offline</td> |
| 764 <td class="legend notstarted" title="No result yet.">No data</td> |
| 765 </tr> |
| 766 </table> |
| 767 </div> |
| 768 </td> |
| 769 <td width="33%" align="right" class="right_align"> |
| 770 <script type="text/javascript"> |
| 771 // <![CDATA[ |
| 772 function reload_page() { |
| 773 name_value = document.getElementById('namebox').value |
| 774 if (document.location.href.lastIndexOf('?') == -1) |
| 775 document.location.href = document.location.href+ '?name=' + name_v
alue; |
| 776 else |
| 777 document.location.href = document.location.href+ '&name=' + name_v
alue; |
| 778 } |
| 779 // ]]> |
| 780 </script> |
| 781 <!-- <input id='namebox' name='name' type='text' style='color:#999;' |
| 782 onblur='this.value = this.value || this.defaultValue; this.style.col
or = "#999";' |
| 783 onfocus='this.value=""; this.style.color = "#000";' |
| 784 value='Personalized for...' /> |
| 785 <input type='submit' value='Go' onclick='reload_page()' /> --> |
| 786 </td> |
| 787 </tr> |
| 788 </table> |
| 789 </div> |
| 790 <br /> |
| 791 <div align="center"> |
| 792 <table width="96%" class="ConsoleData"><tr> |
| 793 <td width="1%"></td> |
| 794 <td width="1%"></td><td class='DevStatus Alt first ' |
| 795 colspan="2"><a href="http://build.chromium.org/p/chromium.linux/console" |
| 796 target="_blank">chromium.linux</a> |
| 797 </td><td class='DevStatus Alt ' |
| 798 colspan="1"><a href="http://build.chromium.org/p/chromium.mac/console" |
| 799 target="_blank">chromium.mac</a> |
| 800 </td><td class='DevStatus Alt ' |
| 801 colspan="1"><a href="http://build.chromium.org/p/chromium.win/console" |
| 802 target="_blank">chromium.win</a> |
| 803 </td><td class='DevStatus Alt last ' |
| 804 colspan="4"><a href="http://build.chromium.org/p/chromium.memory/console
" |
| 805 target="_blank">chromium.memory</a> |
| 806 </td></tr> |
| 807 <tr class='DevStatusSpacing'></tr><tr> |
| 808 <td width="1%"></td> |
| 809 <td width="1%"></td> |
| 810 <td class='DevSlave'>linux</td> |
| 811 <td class='DevSlave'>android</td> |
| 812 <td class='DevSlave'></td> |
| 813 <td class='DevSlave'></td> |
| 814 <td class='DevSlave'>linux asan</td> |
| 815 <td class='DevSlave'>mac asan</td> |
| 816 <td class='DevSlave'>chromeos asan</td> |
| 817 <td class='DevSlave'>win asan</td> |
| 818 </tr><tr> |
| 819 <td width="1%"></td> |
| 820 <td width="1%"></td> |
| 821 <td class='DevSlave Alt '> |
| 822 <table width="100%"> |
| 823 <tr> |
| 824 <td class="DevSlaveBox"> |
| 825 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Builder x64
" title="Linux Builder x64" class="DevSlaveBox success" target="_blank"> |
| 826 </a> |
| 827 </td> |
| 828 <td class="DevSlaveBox"> |
| 829 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Tests x64"
title="Linux Tests x64" class="DevSlaveBox failure" target="_blank"> |
| 830 </a> |
| 831 </td> |
| 832 <td class="DevSlaveBox"> |
| 833 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Sync" title
="Linux Sync" class="DevSlaveBox success" target="_blank"> |
| 834 </a> |
| 835 </td> |
| 836 <td class="DevSlaveBox"> |
| 837 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux (aura)" tit
le="Linux (aura)" class="DevSlaveBox success" target="_blank"> |
| 838 </a> |
| 839 </td> |
| 840 <td class="DevSlaveBox"> |
| 841 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Builder (db
g)" title="Linux Builder (dbg)" class="DevSlaveBox success" target="_blank"> |
| 842 </a> |
| 843 </td> |
| 844 <td class="DevSlaveBox"> |
| 845 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Tests (dbg)
(1)" title="Linux Tests (dbg)(1)" class="DevSlaveBox failure" target="_blank"> |
| 846 </a> |
| 847 </td> |
| 848 <td class="DevSlaveBox"> |
| 849 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Tests (dbg)
(2)" title="Linux Tests (dbg)(2)" class="DevSlaveBox failure" target="_blank"> |
| 850 </a> |
| 851 </td> |
| 852 <td class="DevSlaveBox"> |
| 853 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Precise (db
g)" title="Linux Precise (dbg)" class="DevSlaveBox success" target="_blank"> |
| 854 </a> |
| 855 </td> |
| 856 <td class="DevSlaveBox"> |
| 857 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Precise x64
" title="Linux Precise x64" class="DevSlaveBox offline" target="_blank"> |
| 858 </a> |
| 859 </td> |
| 860 <td class="DevSlaveBox"> |
| 861 <a href="http://build.chromium.org/p/chromium.linux/./builders/Linux Clang (dbg)
" title="Linux Clang (dbg)" class="DevSlaveBox success" target="_blank"> |
| 862 </a> |
| 863 </td> |
| 864 </tr> |
| 865 </table> |
| 866 </td><td class='DevSlave Alt '> |
| 867 <table width="100%"> |
| 868 <tr> |
| 869 <td class="DevSlaveBox"> |
| 870 <a href="http://build.chromium.org/p/chromium.linux/./builders/Android Builder (
dbg)" title="Android Builder (dbg)" class="DevSlaveBox success" target="_blank"> |
| 871 </a> |
| 872 </td> |
| 873 <td class="DevSlaveBox"> |
| 874 <a href="http://build.chromium.org/p/chromium.linux/./builders/Android Tests (db
g)" title="Android Tests (dbg)" class="DevSlaveBox failure" target="_blank"> |
| 875 </a> |
| 876 </td> |
| 877 <td class="DevSlaveBox"> |
| 878 <a href="http://build.chromium.org/p/chromium.linux/./builders/Android Builder"
title="Android Builder" class="DevSlaveBox success" target="_blank"> |
| 879 </a> |
| 880 </td> |
| 881 <td class="DevSlaveBox"> |
| 882 <a href="http://build.chromium.org/p/chromium.linux/./builders/Android Clang Bui
lder (dbg)" title="Android Clang Builder (dbg)" class="DevSlaveBox success" targ
et="_blank"> |
| 883 </a> |
| 884 </td> |
| 885 </tr> |
| 886 </table> |
| 887 </td><td class='DevSlave Alt '> |
| 888 <table width="100%"> |
| 889 <tr> |
| 890 <td class="DevSlaveBox"> |
| 891 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac Builder" title=
"Mac Builder" class="DevSlaveBox success" target="_blank"> |
| 892 </a> |
| 893 </td> |
| 894 <td class="DevSlaveBox"> |
| 895 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac10.6 Tests (1)"
title="Mac10.6 Tests (1)" class="DevSlaveBox success" target="_blank"> |
| 896 </a> |
| 897 </td> |
| 898 <td class="DevSlaveBox"> |
| 899 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac10.6 Tests (2)"
title="Mac10.6 Tests (2)" class="DevSlaveBox success" target="_blank"> |
| 900 </a> |
| 901 </td> |
| 902 <td class="DevSlaveBox"> |
| 903 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac10.6 Tests (3)"
title="Mac10.6 Tests (3)" class="DevSlaveBox success" target="_blank"> |
| 904 </a> |
| 905 </td> |
| 906 <td class="DevSlaveBox"> |
| 907 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac10.7 Tests (1)"
title="Mac10.7 Tests (1)" class="DevSlaveBox success" target="_blank"> |
| 908 </a> |
| 909 </td> |
| 910 <td class="DevSlaveBox"> |
| 911 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac10.7 Tests (2)"
title="Mac10.7 Tests (2)" class="DevSlaveBox success" target="_blank"> |
| 912 </a> |
| 913 </td> |
| 914 <td class="DevSlaveBox"> |
| 915 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac10.7 Tests (3)"
title="Mac10.7 Tests (3)" class="DevSlaveBox success" target="_blank"> |
| 916 </a> |
| 917 </td> |
| 918 <td class="DevSlaveBox"> |
| 919 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac10.6 Sync" title
="Mac10.6 Sync" class="DevSlaveBox success" target="_blank"> |
| 920 </a> |
| 921 </td> |
| 922 <td class="DevSlaveBox"> |
| 923 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac Builder (dbg)"
title="Mac Builder (dbg)" class="DevSlaveBox success" target="_blank"> |
| 924 </a> |
| 925 </td> |
| 926 <td class="DevSlaveBox"> |
| 927 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.6 Tests (dbg
)(1)" title="Mac 10.6 Tests (dbg)(1)" class="DevSlaveBox offline" target="_blank
"> |
| 928 </a> |
| 929 </td> |
| 930 <td class="DevSlaveBox"> |
| 931 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.6 Tests (dbg
)(2)" title="Mac 10.6 Tests (dbg)(2)" class="DevSlaveBox success" target="_blank
"> |
| 932 </a> |
| 933 </td> |
| 934 <td class="DevSlaveBox"> |
| 935 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.6 Tests (dbg
)(3)" title="Mac 10.6 Tests (dbg)(3)" class="DevSlaveBox success" target="_blank
"> |
| 936 </a> |
| 937 </td> |
| 938 <td class="DevSlaveBox"> |
| 939 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.6 Tests (dbg
)(4)" title="Mac 10.6 Tests (dbg)(4)" class="DevSlaveBox success" target="_blank
"> |
| 940 </a> |
| 941 </td> |
| 942 <td class="DevSlaveBox"> |
| 943 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.7 Tests (dbg
)(1)" title="Mac 10.7 Tests (dbg)(1)" class="DevSlaveBox failure" target="_blank
"> |
| 944 </a> |
| 945 </td> |
| 946 <td class="DevSlaveBox"> |
| 947 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.7 Tests (dbg
)(2)" title="Mac 10.7 Tests (dbg)(2)" class="DevSlaveBox success" target="_blank
"> |
| 948 </a> |
| 949 </td> |
| 950 <td class="DevSlaveBox"> |
| 951 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.7 Tests (dbg
)(3)" title="Mac 10.7 Tests (dbg)(3)" class="DevSlaveBox success" target="_blank
"> |
| 952 </a> |
| 953 </td> |
| 954 <td class="DevSlaveBox"> |
| 955 <a href="http://build.chromium.org/p/chromium.mac/./builders/Mac 10.7 Tests (dbg
)(4)" title="Mac 10.7 Tests (dbg)(4)" class="DevSlaveBox success" target="_blank
"> |
| 956 </a> |
| 957 </td> |
| 958 <td class="DevSlaveBox"> |
| 959 <a href="http://build.chromium.org/p/chromium.mac/./builders/iOS Device" title="
iOS Device" class="DevSlaveBox success" target="_blank"> |
| 960 </a> |
| 961 </td> |
| 962 <td class="DevSlaveBox"> |
| 963 <a href="http://build.chromium.org/p/chromium.mac/./builders/iOS Simulator (dbg)
" title="iOS Simulator (dbg)" class="DevSlaveBox success" target="_blank"> |
| 964 </a> |
| 965 </td> |
| 966 </tr> |
| 967 </table> |
| 968 </td><td class='DevSlave Alt '> |
| 969 <table width="100%"> |
| 970 <tr> |
| 971 <td class="DevSlaveBox"> |
| 972 <a href="http://build.chromium.org/p/chromium.win/./builders/Win Builder" title=
"Win Builder" class="DevSlaveBox success" target="_blank"> |
| 973 </a> |
| 974 </td> |
| 975 <td class="DevSlaveBox"> |
| 976 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (1)" title
="XP Tests (1)" class="DevSlaveBox success" target="_blank"> |
| 977 </a> |
| 978 </td> |
| 979 <td class="DevSlaveBox"> |
| 980 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (2)" title
="XP Tests (2)" class="DevSlaveBox success" target="_blank"> |
| 981 </a> |
| 982 </td> |
| 983 <td class="DevSlaveBox"> |
| 984 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (3)" title
="XP Tests (3)" class="DevSlaveBox success" target="_blank"> |
| 985 </a> |
| 986 </td> |
| 987 <td class="DevSlaveBox"> |
| 988 <a href="http://build.chromium.org/p/chromium.win/./builders/Vista Tests (1)" ti
tle="Vista Tests (1)" class="DevSlaveBox success" target="_blank"> |
| 989 </a> |
| 990 </td> |
| 991 <td class="DevSlaveBox"> |
| 992 <a href="http://build.chromium.org/p/chromium.win/./builders/Vista Tests (2)" ti
tle="Vista Tests (2)" class="DevSlaveBox success" target="_blank"> |
| 993 </a> |
| 994 </td> |
| 995 <td class="DevSlaveBox"> |
| 996 <a href="http://build.chromium.org/p/chromium.win/./builders/Vista Tests (3)" ti
tle="Vista Tests (3)" class="DevSlaveBox success" target="_blank"> |
| 997 </a> |
| 998 </td> |
| 999 <td class="DevSlaveBox"> |
| 1000 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (1)" tit
le="Win7 Tests (1)" class="DevSlaveBox failure" target="_blank"> |
| 1001 </a> |
| 1002 </td> |
| 1003 <td class="DevSlaveBox"> |
| 1004 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (2)" tit
le="Win7 Tests (2)" class="DevSlaveBox success" target="_blank"> |
| 1005 </a> |
| 1006 </td> |
| 1007 <td class="DevSlaveBox"> |
| 1008 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (3)" tit
le="Win7 Tests (3)" class="DevSlaveBox success" target="_blank"> |
| 1009 </a> |
| 1010 </td> |
| 1011 <td class="DevSlaveBox"> |
| 1012 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Sync" title="W
in7 Sync" class="DevSlaveBox success" target="_blank"> |
| 1013 </a> |
| 1014 </td> |
| 1015 <td class="DevSlaveBox"> |
| 1016 <a href="http://build.chromium.org/p/chromium.win/./builders/NACL Tests" title="
NACL Tests" class="DevSlaveBox success" target="_blank"> |
| 1017 </a> |
| 1018 </td> |
| 1019 <td class="DevSlaveBox"> |
| 1020 <a href="http://build.chromium.org/p/chromium.win/./builders/NACL Tests (x64)" t
itle="NACL Tests (x64)" class="DevSlaveBox success" target="_blank"> |
| 1021 </a> |
| 1022 </td> |
| 1023 <td class="DevSlaveBox"> |
| 1024 <a href="http://build.chromium.org/p/chromium.win/./builders/Chrome Frame Tests
(ie6)" title="Chrome Frame Tests (ie6)" class="DevSlaveBox success" target="_bla
nk"> |
| 1025 </a> |
| 1026 </td> |
| 1027 <td class="DevSlaveBox"> |
| 1028 <a href="http://build.chromium.org/p/chromium.win/./builders/Chrome Frame Tests
(ie7)" title="Chrome Frame Tests (ie7)" class="DevSlaveBox success" target="_bla
nk"> |
| 1029 </a> |
| 1030 </td> |
| 1031 <td class="DevSlaveBox"> |
| 1032 <a href="http://build.chromium.org/p/chromium.win/./builders/Chrome Frame Tests
(ie8)" title="Chrome Frame Tests (ie8)" class="DevSlaveBox success" target="_bla
nk"> |
| 1033 </a> |
| 1034 </td> |
| 1035 <td class="DevSlaveBox"> |
| 1036 <a href="http://build.chromium.org/p/chromium.win/./builders/Chrome Frame Tests
(ie9)" title="Chrome Frame Tests (ie9)" class="DevSlaveBox success" target="_bla
nk"> |
| 1037 </a> |
| 1038 </td> |
| 1039 <td class="DevSlaveBox"> |
| 1040 <a href="http://build.chromium.org/p/chromium.win/./builders/Win Builder (dbg)"
title="Win Builder (dbg)" class="DevSlaveBox success" target="_blank"> |
| 1041 </a> |
| 1042 </td> |
| 1043 <td class="DevSlaveBox"> |
| 1044 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (dbg)(1)"
title="XP Tests (dbg)(1)" class="DevSlaveBox failure" target="_blank"> |
| 1045 </a> |
| 1046 </td> |
| 1047 <td class="DevSlaveBox"> |
| 1048 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (dbg)(2)"
title="XP Tests (dbg)(2)" class="DevSlaveBox success" target="_blank"> |
| 1049 </a> |
| 1050 </td> |
| 1051 <td class="DevSlaveBox"> |
| 1052 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (dbg)(3)"
title="XP Tests (dbg)(3)" class="DevSlaveBox success" target="_blank"> |
| 1053 </a> |
| 1054 </td> |
| 1055 <td class="DevSlaveBox"> |
| 1056 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (dbg)(4)"
title="XP Tests (dbg)(4)" class="DevSlaveBox success" target="_blank"> |
| 1057 </a> |
| 1058 </td> |
| 1059 <td class="DevSlaveBox"> |
| 1060 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (dbg)(5)"
title="XP Tests (dbg)(5)" class="DevSlaveBox success" target="_blank"> |
| 1061 </a> |
| 1062 </td> |
| 1063 <td class="DevSlaveBox"> |
| 1064 <a href="http://build.chromium.org/p/chromium.win/./builders/XP Tests (dbg)(6)"
title="XP Tests (dbg)(6)" class="DevSlaveBox success" target="_blank"> |
| 1065 </a> |
| 1066 </td> |
| 1067 <td class="DevSlaveBox"> |
| 1068 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (dbg)(1)
" title="Win7 Tests (dbg)(1)" class="DevSlaveBox failure" target="_blank"> |
| 1069 </a> |
| 1070 </td> |
| 1071 <td class="DevSlaveBox"> |
| 1072 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (dbg)(2)
" title="Win7 Tests (dbg)(2)" class="DevSlaveBox success" target="_blank"> |
| 1073 </a> |
| 1074 </td> |
| 1075 <td class="DevSlaveBox"> |
| 1076 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (dbg)(3)
" title="Win7 Tests (dbg)(3)" class="DevSlaveBox success" target="_blank"> |
| 1077 </a> |
| 1078 </td> |
| 1079 <td class="DevSlaveBox"> |
| 1080 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (dbg)(4)
" title="Win7 Tests (dbg)(4)" class="DevSlaveBox success" target="_blank"> |
| 1081 </a> |
| 1082 </td> |
| 1083 <td class="DevSlaveBox"> |
| 1084 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (dbg)(5)
" title="Win7 Tests (dbg)(5)" class="DevSlaveBox success" target="_blank"> |
| 1085 </a> |
| 1086 </td> |
| 1087 <td class="DevSlaveBox"> |
| 1088 <a href="http://build.chromium.org/p/chromium.win/./builders/Win7 Tests (dbg)(6)
" title="Win7 Tests (dbg)(6)" class="DevSlaveBox success" target="_blank"> |
| 1089 </a> |
| 1090 </td> |
| 1091 <td class="DevSlaveBox"> |
| 1092 <a href="http://build.chromium.org/p/chromium.win/./builders/Interactive Tests (
dbg)" title="Interactive Tests (dbg)" class="DevSlaveBox success" target="_blank
"> |
| 1093 </a> |
| 1094 </td> |
| 1095 <td class="DevSlaveBox"> |
| 1096 <a href="http://build.chromium.org/p/chromium.win/./builders/Win Aura" title="Wi
n Aura" class="DevSlaveBox success" target="_blank"> |
| 1097 </a> |
| 1098 </td> |
| 1099 </tr> |
| 1100 </table> |
| 1101 </td><td class='DevSlave Alt '> |
| 1102 <table width="100%"> |
| 1103 <tr> |
| 1104 <td class="DevSlaveBox"> |
| 1105 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux ASAN Build
er" title="Linux ASAN Builder" class="DevSlaveBox success" target="_blank"> |
| 1106 </a> |
| 1107 </td> |
| 1108 <td class="DevSlaveBox"> |
| 1109 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux ASAN Tests
(1)" title="Linux ASAN Tests (1)" class="DevSlaveBox success" target="_blank"> |
| 1110 </a> |
| 1111 </td> |
| 1112 <td class="DevSlaveBox"> |
| 1113 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux ASAN Tests
(2)" title="Linux ASAN Tests (2)" class="DevSlaveBox success" target="_blank"> |
| 1114 </a> |
| 1115 </td> |
| 1116 <td class="DevSlaveBox"> |
| 1117 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux ASAN Tests
(3)" title="Linux ASAN Tests (3)" class="DevSlaveBox success" target="_blank"> |
| 1118 </a> |
| 1119 </td> |
| 1120 </tr> |
| 1121 </table> |
| 1122 </td><td class='DevSlave Alt '> |
| 1123 <table width="100%"> |
| 1124 <tr> |
| 1125 <td class="DevSlaveBox"> |
| 1126 <a href="http://build.chromium.org/p/chromium.memory/./builders/Mac ASAN Builder
" title="Mac ASAN Builder" class="DevSlaveBox success" target="_blank"> |
| 1127 </a> |
| 1128 </td> |
| 1129 <td class="DevSlaveBox"> |
| 1130 <a href="http://build.chromium.org/p/chromium.memory/./builders/Mac ASAN Tests (
1)" title="Mac ASAN Tests (1)" class="DevSlaveBox success" target="_blank"> |
| 1131 </a> |
| 1132 </td> |
| 1133 <td class="DevSlaveBox"> |
| 1134 <a href="http://build.chromium.org/p/chromium.memory/./builders/Mac ASAN Tests (
2)" title="Mac ASAN Tests (2)" class="DevSlaveBox success" target="_blank"> |
| 1135 </a> |
| 1136 </td> |
| 1137 <td class="DevSlaveBox"> |
| 1138 <a href="http://build.chromium.org/p/chromium.memory/./builders/Mac ASAN Tests (
3)" title="Mac ASAN Tests (3)" class="DevSlaveBox success" target="_blank"> |
| 1139 </a> |
| 1140 </td> |
| 1141 </tr> |
| 1142 </table> |
| 1143 </td><td class='DevSlave Alt '> |
| 1144 <table width="100%"> |
| 1145 <tr> |
| 1146 <td class="DevSlaveBox"> |
| 1147 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux Chromium O
S ASAN Builder" title="Linux Chromium OS ASAN Builder" class="DevSlaveBox succes
s" target="_blank"> |
| 1148 </a> |
| 1149 </td> |
| 1150 <td class="DevSlaveBox"> |
| 1151 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux Chromium O
S ASAN Tests (1)" title="Linux Chromium OS ASAN Tests (1)" class="DevSlaveBox su
ccess" target="_blank"> |
| 1152 </a> |
| 1153 </td> |
| 1154 <td class="DevSlaveBox"> |
| 1155 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux Chromium O
S ASAN Tests (2)" title="Linux Chromium OS ASAN Tests (2)" class="DevSlaveBox su
ccess" target="_blank"> |
| 1156 </a> |
| 1157 </td> |
| 1158 <td class="DevSlaveBox"> |
| 1159 <a href="http://build.chromium.org/p/chromium.memory/./builders/Linux Chromium O
S ASAN Tests (3)" title="Linux Chromium OS ASAN Tests (3)" class="DevSlaveBox of
fline" target="_blank"> |
| 1160 </a> |
| 1161 </td> |
| 1162 <td class="DevSlaveBox"> |
| 1163 <a href="http://build.chromium.org/p/chromium.memory/./builders/Chromium OS (x86
) ASAN" title="Chromium OS (x86) ASAN" class="DevSlaveBox offline" target="_blan
k"> |
| 1164 </a> |
| 1165 </td> |
| 1166 <td class="DevSlaveBox"> |
| 1167 <a href="http://build.chromium.org/p/chromium.memory/./builders/Chromium OS (amd
64) ASAN" title="Chromium OS (amd64) ASAN" class="DevSlaveBox offline" target="_
blank"> |
| 1168 </a> |
| 1169 </td> |
| 1170 </tr> |
| 1171 </table> |
| 1172 </td><td class='DevSlave Alt '> |
| 1173 <table width="100%"> |
| 1174 <tr> |
| 1175 <td class="DevSlaveBox"> |
| 1176 <a href="http://build.chromium.org/p/chromium.memory/./builders/Win ASAN Builder
" title="Win ASAN Builder" class="DevSlaveBox success" target="_blank"> |
| 1177 </a> |
| 1178 </td> |
| 1179 <td class="DevSlaveBox"> |
| 1180 <a href="http://build.chromium.org/p/chromium.memory/./builders/Win ASAN Tests (
1)" title="Win ASAN Tests (1)" class="DevSlaveBox failure" target="_blank"> |
| 1181 </a> |
| 1182 </td> |
| 1183 <td class="DevSlaveBox"> |
| 1184 <a href="http://build.chromium.org/p/chromium.memory/./builders/Win ASAN Tests (
2)" title="Win ASAN Tests (2)" class="DevSlaveBox failure" target="_blank"> |
| 1185 </a> |
| 1186 </td> |
| 1187 </tr> |
| 1188 </table> |
| 1189 </td> |
| 1190 </tr><tr> |
| 1191 <td width="1%" class="DevRev DevRevCollapse "> |
| 1192 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=17189
5">171895</a> |
| 1193 </td> |
| 1194 <td width="1%" class="DevName "> |
| 1195 |
| 1196 danakj<span style="display:none">ohnoyoudont</span>@chromium.org |
| 1197 |
| 1198 </td><td class='DevStatus '><table width="100%"> |
| 1199 <tr> |
| 1200 <td class="DevStatusBox"> |
| 1201 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20
Builder%20x64&number=64040" title="Linux Builder x64 build successful" class
="DevStatusBox success TagLinuxBuilderx6464040" target="_blank"></a> |
| 1202 </td> |
| 1203 <td class="DevStatusBox"> |
| 1204 <a href="http://build.chromium.org/p/chromium.linux/waterfall" title="Linux Test
s x64" class="DevStatusBox notstarted " target="_blank"></a> |
| 1205 </td> |
| 1206 <td class="DevStatusBox"> |
| 1207 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20
Sync&number=31829" title="Linux Sync ETA: 883s" class="DevStatusBox running
TagLinuxSync31829" target="_blank"></a> |
| 1208 </td> |
| 1209 <td class="DevStatusBox"> |
| 1210 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20
%28aura%29&number=9649" title="Linux (aura) ETA: 1086s" class="DevStatusBox
running TagLinuxaura9649" target="_blank"></a> |
| 1211 </td> |
| 1212 <td class="DevStatusBox"> |
| 1213 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20
Builder%20%28dbg%29&number=39109" title="Linux Builder (dbg) ETA: 211s" cla
ss="DevStatusBox running TagLinuxBuilderdbg39109" target="_blank"></a> |
| 1214 </td> |
| 1215 <td class="DevStatusBox"> |
| 1216 <a href="http://build.chromium.org/p/chromium.linux/waterfall" title="Linux Test
s (dbg)(1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1217 </td> |
| 1218 <td class="DevStatusBox"> |
| 1219 <a href="http://build.chromium.org/p/chromium.linux/waterfall" title="Linux Test
s (dbg)(2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1220 </td> |
| 1221 <td class="DevStatusBox"> |
| 1222 <a href="http://build.chromium.org/p/chromium.linux/waterfall" title="Linux Prec
ise (dbg)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1223 </td> |
| 1224 <td class="DevStatusBox"> |
| 1225 <a href="http://build.chromium.org/p/chromium.linux/waterfall" title="Linux Prec
ise x64" class="DevStatusBox notstarted " target="_blank"></a> |
| 1226 </td> |
| 1227 <td class="DevStatusBox"> |
| 1228 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Linux%20
Clang%20%28dbg%29&number=37078" title="Linux Clang (dbg) ETA: 798s" class="
DevStatusBox running TagLinuxClangdbg37078" target="_blank"></a> |
| 1229 </td> |
| 1230 </tr> |
| 1231 </table></td><td class='DevStatus '><table width="100%"> |
| 1232 <tr> |
| 1233 <td class="DevStatusBox"> |
| 1234 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Android%
20Builder%20%28dbg%29&number=22734" title="Android Builder (dbg) build succe
ssful" class="DevStatusBox success TagAndroidBuilderdbg22734" target="_blank"></
a> |
| 1235 </td> |
| 1236 <td class="DevStatusBox"> |
| 1237 <a href="http://build.chromium.org/p/chromium.linux/waterfall" title="Android Te
sts (dbg)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1238 </td> |
| 1239 <td class="DevStatusBox"> |
| 1240 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Android%
20Builder&number=2851" title="Android Builder ETA: 44s" class="DevStatusBox
running TagAndroidBuilder2851" target="_blank"></a> |
| 1241 </td> |
| 1242 <td class="DevStatusBox"> |
| 1243 <a href="http://build.chromium.org/p/chromium.linux/buildstatus?builder=Android%
20Clang%20Builder%20%28dbg%29&number=3377" title="Android Clang Builder (dbg
) build successful" class="DevStatusBox success TagAndroidClangBuilderdbg3377" t
arget="_blank"></a> |
| 1244 </td> |
| 1245 </tr> |
| 1246 </table></td><td class='DevStatus '><table width="100%"> |
| 1247 <tr> |
| 1248 <td class="DevStatusBox"> |
| 1249 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac Builder"
class="DevStatusBox notstarted " target="_blank"></a> |
| 1250 </td> |
| 1251 <td class="DevStatusBox"> |
| 1252 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac10.6 Test
s (1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1253 </td> |
| 1254 <td class="DevStatusBox"> |
| 1255 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac10.6 Test
s (2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1256 </td> |
| 1257 <td class="DevStatusBox"> |
| 1258 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac10.6 Test
s (3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1259 </td> |
| 1260 <td class="DevStatusBox"> |
| 1261 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac10.7 Test
s (1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1262 </td> |
| 1263 <td class="DevStatusBox"> |
| 1264 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac10.7 Test
s (2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1265 </td> |
| 1266 <td class="DevStatusBox"> |
| 1267 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac10.7 Test
s (3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1268 </td> |
| 1269 <td class="DevStatusBox"> |
| 1270 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac10.6 Sync
" class="DevStatusBox notstarted " target="_blank"></a> |
| 1271 </td> |
| 1272 <td class="DevStatusBox"> |
| 1273 <a href="http://build.chromium.org/p/chromium.mac/buildstatus?builder=Mac%20Buil
der%20%28dbg%29&number=33581" title="Mac Builder (dbg) ETA: 95s" class="Dev
StatusBox running TagMacBuilderdbg33581" target="_blank"></a> |
| 1274 </td> |
| 1275 <td class="DevStatusBox"> |
| 1276 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.6 Tes
ts (dbg)(1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1277 </td> |
| 1278 <td class="DevStatusBox"> |
| 1279 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.6 Tes
ts (dbg)(2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1280 </td> |
| 1281 <td class="DevStatusBox"> |
| 1282 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.6 Tes
ts (dbg)(3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1283 </td> |
| 1284 <td class="DevStatusBox"> |
| 1285 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.6 Tes
ts (dbg)(4)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1286 </td> |
| 1287 <td class="DevStatusBox"> |
| 1288 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.7 Tes
ts (dbg)(1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1289 </td> |
| 1290 <td class="DevStatusBox"> |
| 1291 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.7 Tes
ts (dbg)(2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1292 </td> |
| 1293 <td class="DevStatusBox"> |
| 1294 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.7 Tes
ts (dbg)(3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1295 </td> |
| 1296 <td class="DevStatusBox"> |
| 1297 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="Mac 10.7 Tes
ts (dbg)(4)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1298 </td> |
| 1299 <td class="DevStatusBox"> |
| 1300 <a href="http://build.chromium.org/p/chromium.mac/buildstatus?builder=iOS%20Devi
ce&number=3735" title="iOS Device ETA: 0s" class="DevStatusBox running Tagi
OSDevice3735" target="_blank"></a> |
| 1301 </td> |
| 1302 <td class="DevStatusBox"> |
| 1303 <a href="http://build.chromium.org/p/chromium.mac/waterfall" title="iOS Simulato
r (dbg)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1304 </td> |
| 1305 </tr> |
| 1306 </table></td><td class='DevStatus '><table width="100%"> |
| 1307 <tr> |
| 1308 <td class="DevStatusBox"> |
| 1309 <a href="http://build.chromium.org/p/chromium.win/buildstatus?builder=Win%20Buil
der&number=4706" title="Win Builder ETA: 2477s" class="DevStatusBox running
TagWinBuilder4706" target="_blank"></a> |
| 1310 </td> |
| 1311 <td class="DevStatusBox"> |
| 1312 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (1)
" class="DevStatusBox notstarted " target="_blank"></a> |
| 1313 </td> |
| 1314 <td class="DevStatusBox"> |
| 1315 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (2)
" class="DevStatusBox notstarted " target="_blank"></a> |
| 1316 </td> |
| 1317 <td class="DevStatusBox"> |
| 1318 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (3)
" class="DevStatusBox notstarted " target="_blank"></a> |
| 1319 </td> |
| 1320 <td class="DevStatusBox"> |
| 1321 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Vista Tests
(1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1322 </td> |
| 1323 <td class="DevStatusBox"> |
| 1324 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Vista Tests
(2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1325 </td> |
| 1326 <td class="DevStatusBox"> |
| 1327 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Vista Tests
(3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1328 </td> |
| 1329 <td class="DevStatusBox"> |
| 1330 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1331 </td> |
| 1332 <td class="DevStatusBox"> |
| 1333 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1334 </td> |
| 1335 <td class="DevStatusBox"> |
| 1336 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1337 </td> |
| 1338 <td class="DevStatusBox"> |
| 1339 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Sync" c
lass="DevStatusBox notstarted " target="_blank"></a> |
| 1340 </td> |
| 1341 <td class="DevStatusBox"> |
| 1342 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="NACL Tests"
class="DevStatusBox notstarted " target="_blank"></a> |
| 1343 </td> |
| 1344 <td class="DevStatusBox"> |
| 1345 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="NACL Tests (
x64)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1346 </td> |
| 1347 <td class="DevStatusBox"> |
| 1348 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Chrome Frame
Tests (ie6)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1349 </td> |
| 1350 <td class="DevStatusBox"> |
| 1351 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Chrome Frame
Tests (ie7)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1352 </td> |
| 1353 <td class="DevStatusBox"> |
| 1354 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Chrome Frame
Tests (ie8)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1355 </td> |
| 1356 <td class="DevStatusBox"> |
| 1357 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Chrome Frame
Tests (ie9)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1358 </td> |
| 1359 <td class="DevStatusBox"> |
| 1360 <a href="http://build.chromium.org/p/chromium.win/buildstatus?builder=Win%20Buil
der%20%28dbg%29&number=6421" title="Win Builder (dbg) ETA: 513s" class="Dev
StatusBox running TagWinBuilderdbg6421" target="_blank"></a> |
| 1361 </td> |
| 1362 <td class="DevStatusBox"> |
| 1363 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (db
g)(1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1364 </td> |
| 1365 <td class="DevStatusBox"> |
| 1366 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (db
g)(2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1367 </td> |
| 1368 <td class="DevStatusBox"> |
| 1369 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (db
g)(3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1370 </td> |
| 1371 <td class="DevStatusBox"> |
| 1372 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (db
g)(4)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1373 </td> |
| 1374 <td class="DevStatusBox"> |
| 1375 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (db
g)(5)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1376 </td> |
| 1377 <td class="DevStatusBox"> |
| 1378 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="XP Tests (db
g)(6)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1379 </td> |
| 1380 <td class="DevStatusBox"> |
| 1381 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
dbg)(1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1382 </td> |
| 1383 <td class="DevStatusBox"> |
| 1384 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
dbg)(2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1385 </td> |
| 1386 <td class="DevStatusBox"> |
| 1387 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
dbg)(3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1388 </td> |
| 1389 <td class="DevStatusBox"> |
| 1390 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
dbg)(4)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1391 </td> |
| 1392 <td class="DevStatusBox"> |
| 1393 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
dbg)(5)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1394 </td> |
| 1395 <td class="DevStatusBox"> |
| 1396 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win7 Tests (
dbg)(6)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1397 </td> |
| 1398 <td class="DevStatusBox"> |
| 1399 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Interactive
Tests (dbg)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1400 </td> |
| 1401 <td class="DevStatusBox"> |
| 1402 <a href="http://build.chromium.org/p/chromium.win/waterfall" title="Win Aura" cl
ass="DevStatusBox notstarted " target="_blank"></a> |
| 1403 </td> |
| 1404 </tr> |
| 1405 </table></td><td class='DevStatus '><table width="100%"> |
| 1406 <tr> |
| 1407 <td class="DevStatusBox"> |
| 1408 <a href="http://build.chromium.org/p/chromium.memory/buildstatus?builder=Linux%2
0ASAN%20Builder&number=13602" title="Linux ASAN Builder build successful" cl
ass="DevStatusBox success TagLinuxASANBuilder13602" target="_blank"></a> |
| 1409 </td> |
| 1410 <td class="DevStatusBox"> |
| 1411 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Linux ASA
N Tests (1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1412 </td> |
| 1413 <td class="DevStatusBox"> |
| 1414 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Linux ASA
N Tests (2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1415 </td> |
| 1416 <td class="DevStatusBox"> |
| 1417 <a href="http://build.chromium.org/p/chromium.memory/buildstatus?builder=Linux%2
0ASAN%20Tests%20%283%29&number=988" title="Linux ASAN Tests (3) ETA: 1574s"
class="DevStatusBox running TagLinuxASANTests3988" target="_blank"></a> |
| 1418 </td> |
| 1419 </tr> |
| 1420 </table></td><td class='DevStatus '><table width="100%"> |
| 1421 <tr> |
| 1422 <td class="DevStatusBox"> |
| 1423 <a href="http://build.chromium.org/p/chromium.memory/buildstatus?builder=Mac%20A
SAN%20Builder&number=9939" title="Mac ASAN Builder ETA: 3078s" class="DevSt
atusBox running TagMacASANBuilder9939" target="_blank"></a> |
| 1424 </td> |
| 1425 <td class="DevStatusBox"> |
| 1426 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Mac ASAN
Tests (1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1427 </td> |
| 1428 <td class="DevStatusBox"> |
| 1429 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Mac ASAN
Tests (2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1430 </td> |
| 1431 <td class="DevStatusBox"> |
| 1432 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Mac ASAN
Tests (3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1433 </td> |
| 1434 </tr> |
| 1435 </table></td><td class='DevStatus '><table width="100%"> |
| 1436 <tr> |
| 1437 <td class="DevStatusBox"> |
| 1438 <a href="http://build.chromium.org/p/chromium.memory/buildstatus?builder=Linux%2
0Chromium%20OS%20ASAN%20Builder&number=1519" title="Linux Chromium OS ASAN B
uilder build successful" class="DevStatusBox success TagLinuxChromiumOSASANBuild
er1519" target="_blank"></a> |
| 1439 </td> |
| 1440 <td class="DevStatusBox"> |
| 1441 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Linux Chr
omium OS ASAN Tests (1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1442 </td> |
| 1443 <td class="DevStatusBox"> |
| 1444 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Linux Chr
omium OS ASAN Tests (2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1445 </td> |
| 1446 <td class="DevStatusBox"> |
| 1447 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Linux Chr
omium OS ASAN Tests (3)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1448 </td> |
| 1449 <td class="DevStatusBox"> |
| 1450 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Chromium
OS (x86) ASAN" class="DevStatusBox notstarted " target="_blank"></a> |
| 1451 </td> |
| 1452 <td class="DevStatusBox"> |
| 1453 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Chromium
OS (amd64) ASAN" class="DevStatusBox notstarted " target="_blank"></a> |
| 1454 </td> |
| 1455 </tr> |
| 1456 </table></td><td class='DevStatus '><table width="100%"> |
| 1457 <tr> |
| 1458 <td class="DevStatusBox"> |
| 1459 <a href="http://build.chromium.org/p/chromium.memory/buildstatus?builder=Win%20A
SAN%20Builder&number=83" title="Win ASAN Builder ETA: 5794s" class="DevStat
usBox running TagWinASANBuilder83" target="_blank"></a> |
| 1460 </td> |
| 1461 <td class="DevStatusBox"> |
| 1462 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Win ASAN
Tests (1)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1463 </td> |
| 1464 <td class="DevStatusBox"> |
| 1465 <a href="http://build.chromium.org/p/chromium.memory/waterfall" title="Win ASAN
Tests (2)" class="DevStatusBox notstarted " target="_blank"></a> |
| 1466 </td> |
| 1467 </tr> |
| 1468 </table></td></tr> |
| 1469 |
| 1470 <tr> |
| 1471 <td colspan="10" |
| 1472 class="DevComment "> |
| 1473 |
| 1474 cc: Add receiver for CompositorFrameAck in LayerTreeHostImpl and forward it to t
he renderer.<br /><br />BUG=146080<br />R=piman<br /><br />Review URL: https://c
odereview.chromium.org/11472004 |
| 1475 |
| 1476 </td> |
| 1477 </tr><tr class='DevStatusSpacing'></tr> |
| 1478 </table> |
| 1479 </div> |
| 1480 <div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.displa
y = 'None'" class="BuildWaterfall"> |
| 1481 </div> |
| 1482 <iframe id="frameBox" style="display: none;"></iframe> |
| 1483 <script type="text/javascript"> |
| 1484 // replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload
event in xhtml |
| 1485 window.addEventListener("load", function() { |
| 1486 document.getElementById('frameBox').onload = function(event) { |
| 1487 updateDiv(event); |
| 1488 }; |
| 1489 }, false); |
| 1490 </script> |
| 1491 </div><div class="footer" style="clear:both"> |
| 1492 <hr /> |
| 1493 [ <a class="collapse" href="#" onclick="collapse(); return false;">collapse</a
> |
| 1494 <a class="uncollapse" href="#" onclick="uncollapse(); return false;">un-collapse
</a> |
| 1495 <a class="merge" href="#" onclick="merge(); return false;">merge</a> |
| 1496 <a class="unmerge" style="display: none" href="#" onclick="unmerge(); return fal
se;">un-merge</a> ] |
| 1497 <p>Debug info: {'revision_final': 25, 'builds_scanned': 200, 'source_all': 25,
'source_len': 25, 'last_revision': u'171866', 'from_cache': 54, 'added_blocks':
0, 'load_time': 0.038244009017944336}</p> |
| 1498 </div> |
| 1499 </body> |
| 1500 </html> |
OLD | NEW |