Index: tests/test_console_merger_splitrevs/chromium_console.html |
diff --git a/tests/test_console_merger_splitrevs/chromium_console.html b/tests/test_console_merger_splitrevs/chromium_console.html |
deleted file mode 100644 |
index abba7a93f7aa905303a6ebb6c610d4e60309ab05..0000000000000000000000000000000000000000 |
--- a/tests/test_console_merger_splitrevs/chromium_console.html |
+++ /dev/null |
@@ -1,10614 +0,0 @@ |
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
-<html xmlns="http://www.w3.org/1999/xhtml"> |
- <head> |
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
- <meta http-equiv="refresh" content="9999999999"/> |
- <title>BuildBot: Chromium</title> |
- <link rel="stylesheet" href="default.css" type="text/css" /> |
- <link rel="alternate" type="application/rss+xml" title="RSS" href="rss"> |
- |
-<script type='text/javascript'> |
-// <![CDATA[ |
-// |
- |
-// |
-// Functions used to display the build status bubble on box click. |
-// |
- |
-// show the build status box. This is called when the user clicks on a block. |
-function showBuildBox(url, event) { |
- // Find the current curson position. |
- var cursorPosTop = (window.event ? window.event.clientY : event.pageY) |
- var cursorPosLeft = (window.event ? window.event.clientX : event.pageX) |
- |
- // Offset the position by 5, to make the window appears under the cursor. |
- cursorPosTop = cursorPosTop + document.body.scrollTop -5 ; |
- cursorPosLeft = cursorPosLeft + document.body.scrollLeft - 5; |
- |
- // Move the div (hidden) under the cursor. |
- var divBox = document.getElementById('divBox'); |
- divBox.style.top = parseInt(cursorPosTop) + 'px'; |
- divBox.style.left = parseInt(cursorPosLeft) + 'px'; |
- |
- // Reload the hidden frame with the build page we want to show. |
- // The onload even on this frame will update the div and make it visible. |
- document.getElementById("frameBox").src = url |
- |
- // We don't want to reload the page. |
- return false; |
-} |
- |
-// OnLoad handler for the iframe containing the build to show. |
-function updateDiv(event) { |
- // Get the frame innerHTML. |
- var iframeContent = document.getElementById("frameBox").contentWindow.document.body.innerHTML; |
- |
- // If there is any content, update the div, and make it visible. |
- if (iframeContent) { |
- var divBox = document.getElementById('divBox'); |
- divBox.innerHTML = iframeContent ; |
- divBox.style.display = "block"; |
- } |
-} |
- |
-// Util functions to know if an element is contained inside another element. |
-// We use this to know when we mouse out our build status div. |
-function containsDOM (container, containee) { |
- var isParent = false; |
- do { |
- if ((isParent = container == containee)) |
- break; |
- containee = containee.parentNode; |
- } while (containee != null); |
- |
- return isParent; |
-} |
- |
-// OnMouseOut handler. Returns true if the mouse moved out of the element. |
-// It is false if the mouse is still in the element, but in a blank part of it, |
-// like in an empty table cell. |
-function checkMouseLeave(element, event) { |
- if (element.contains && event.toElement) { |
- return !element.contains(event.toElement); |
- } |
- else if (event.relatedTarget) { |
- return !containsDOM(element, event.relatedTarget); |
- } |
-} |
- |
-// Creates a new cookie. |
-function createCookie(name, value, day) { |
- var date = new Date(); |
- date.setTime(date.getTime() + (day * 24 * 60 * 60 * 1000)); |
- var expires = "; expires=" + date.toGMTString(); |
- document.cookie = name + "=" + value+expires + "; path=/"; |
-} |
- |
-// Returns the vaue of a cookie, or null if it does not exist. |
-function readCookie(name) { |
- var begin = name + "="; |
- var data = document.cookie.split(';'); |
- for(var i = 0; i < data.length; i++) { |
- var cookie = data[i]; |
- while (cookie.charAt(0) == ' ') |
- cookie = cookie.substring(1, cookie.length); |
- if (cookie.indexOf(begin) == 0) |
- return cookie.substring(begin.length, cookie.length); |
- } |
- |
- return null; |
-} |
- |
-// Deletes a cookie. |
-function eraseCookie(name) { |
- createCookie(name, "", -1); |
-} |
- |
-// Hides all "details" and "comments" section. |
-function collapse() { |
- // Hide all Comments sections. |
- var comments = document.querySelectorAll('.DevComment'); |
- for(var i = 0; i < comments.length; i++) { |
- comments[i].style.display = "none"; |
- } |
- |
- // Hide all details sections. |
- var details = document.querySelectorAll('.DevDetails'); |
- for(var i = 0; i < details.length; i++) { |
- details[i].style.display = "none"; |
- } |
- |
- // Fix the rounding on the Revision box. (Lower right corner must be round) |
- var revisions = document.querySelectorAll('.DevRev'); |
- for(var i = 0; i < revisions.length; i++) { |
- revisions[i].className = revisions[i].className + ' DevRevCollapse'; |
- } |
- |
- // Fix the rounding on the last category box. (Lower left corner must be round) |
- var status = document.querySelectorAll('.last'); |
- for(var i = 0; i < status.length; i++) { |
- status[i].className = status[i].className + ' DevStatusCollapse'; |
- } |
- |
- // Create a cookie to remember that we want the view to be collapsed. |
- createCookie('collapsed', 'true', 30) |
- |
- // Hide the collapse and the unmerge buttons. |
- document.querySelectorAll('.collapse')[0].style.display = 'none' |
- document.querySelectorAll('.unmerge')[0].style.display = 'none' |
- |
- // Activate the merge and expand buttons. |
- document.querySelectorAll('.uncollapse')[0].style.display = 'inline' |
- document.querySelectorAll('.merge')[0].style.display = 'inline' |
-} |
- |
-// Expands the view. This is the opposite of "Collapse" |
-function uncollapse() { |
- unmerge(); |
- |
- // Make the comments visible. |
- var comments = document.querySelectorAll('.DevComment'); |
- for(var i = 0; i < comments.length; i++) { |
- comments[i].style.display = ""; |
- } |
- |
- // Make the details visible. |
- var details = document.querySelectorAll('.DevDetails'); |
- for(var i = 0; i < details.length; i++) { |
- details[i].style.display = ""; |
- } |
- |
- // Remove the round corner (lower right) for the Revision box. |
- var revisions = document.querySelectorAll('.DevRev'); |
- for(var i = 0; i < revisions.length; i++) { |
- revisions[i].className = revisions[i].className.replace('DevRevCollapse', ''); |
- } |
- |
- // Remoe the round corner (lower left) for the last category box. |
- var status = document.querySelectorAll('.DevStatus'); |
- for(var i = 0; i < status.length; i++) { |
- status[i].className = status[i].className.replace('DevStatusCollapse', ''); |
- } |
- |
- // Delete the cookies that say that we want to be collapsed or merged. |
- eraseCookie('collapsed') |
- eraseCookie('merged') |
- |
- // Display the "collapse" and "merge" buttons. |
- document.querySelectorAll('.collapse')[0].style.display = 'inline' |
- document.querySelectorAll('.merge')[0].style.display = 'inline' |
- |
- // Remove the "uncollapse" and "unmerge" buttons. |
- document.querySelectorAll('.uncollapse')[0].style.display = 'none' |
- document.querySelectorAll('.unmerge')[0].style.display = 'none' |
-} |
- |
-// Merge all the status boxes together. |
-function merge() { |
- collapse(); |
- |
- // Hide all the spacing. |
- var spacing = document.querySelectorAll('.DevStatusSpacing'); |
- for(var i = 0; i < spacing.length; i++) { |
- spacing[i].style.display = "none"; |
- } |
- |
- // Each boxes have, in the className, a tag that uniquely represents the |
- // build where this data comes from. |
- // Since we want to merge all the boxes coming from the same build, we |
- // parse the document to find all the builds, and then, for each build, we |
- // concatenate the boxes. |
- |
- var allTags = []; |
- all = document.getElementsByTagName('*') |
- for(var i = 0; i < all.length; i++) { |
- var element = all[i]; |
- start = element.className.indexOf('Tag') |
- if (start != -1) { |
- var className = "" |
- end = element.className.indexOf(' ', start) |
- if (end != -1) { |
- className = element.className.substring(start, end); |
- } else { |
- className = element.className.substring(start); |
- } |
- allTags[className] = 1; |
- } |
- } |
- |
- // Mergeall tags that we found |
- for (i in allTags) { |
- var current = document.querySelectorAll('.' + i); |
- |
- // We do the work only if there is more than 1 box with the same |
- // build. |
- if (current.length > 1) { |
- // Add the noround class to all the boxes. |
- for(var i = 0; i < current.length; i++) { |
- current[i].className = current[i].className + ' noround'; |
- } |
- |
- // Add the begin class to the first box. |
- current[0].className = current[0].className + ' begin'; |
- |
- // Add the end class to the last box. |
- last = current.length - 1; |
- current[last].className = current[last].className + ' end'; |
- } |
- } |
- |
- // Display the "unmerge" button. |
- document.querySelectorAll('.unmerge')[0].style.display = 'inline' |
- document.querySelectorAll('.uncollapse')[0].style.display = 'inline' |
- |
- // Remove the "merge" button. |
- document.querySelectorAll('.collapse')[0].style.display = 'none' |
- document.querySelectorAll('.merge')[0].style.display = 'none' |
- |
- // Create a cookie to remember that we want to be merged. |
- createCookie('merged', 'true', 30) |
-} |
- |
-// Un-merge the view. This is the opposite of "merge". |
-function unmerge() { |
- // We put back all the spacing. |
- var spacing = document.querySelectorAll('.DevStatusSpacing'); |
- for(var i = 0; i < spacing.length; i++) { |
- spacing[i].style.display = ""; |
- } |
- |
- // We remove the class added to all the boxes we modified. |
- var noround = document.querySelectorAll('.noround'); |
- for(var i = 0; i < noround.length; i++) { |
- noround[i].className = noround[i].className.replace("begin", ''); |
- noround[i].className = noround[i].className.replace("end", ''); |
- noround[i].className = noround[i].className.replace("noround", ''); |
- } |
- |
- // Delete the cookie, we don't want to be merged anymore. |
- eraseCookie('merged') |
- |
- // Display the "merge" button. |
- document.querySelectorAll('.merge')[0].style.display = 'inline' |
- |
- // Hide the "unmerge" button. |
- document.querySelectorAll('.unmerge')[0].style.display = 'none' |
-} |
- |
-function SetupView() { |
- if (readCookie('merged')) { |
- merge(); |
- } else if (readCookie('collapsed')) { |
- collapse(); |
- } |
-} |
- |
-document.addEventListener("DOMContentLoaded", SetupView, false); |
- |
-// ]]> |
-</script> |
- </head> |
- <body class="interface"> |
- <div class="header"> |
- <a href=".">Home</a> |
- - <a href="waterfall">Waterfall</a> |
- <a href="grid">Grid</a> |
- <a href="tgrid">T-Grid</a> |
- <a href="console">Console</a> |
- <a href="builders">Builders</a> |
- <a href="one_line_per_build">Recent Builds</a> |
- <a href="buildslaves">Buildslaves</a> |
- <a href="changes">Changesources</a> |
- - <a href="json/help">JSON API</a> |
- - <a href="about">About</a> |
- </div> |
- |
-<hr/> |
-<script> |
- /** |
- * Pseudo namespace for chromium - keep it short because we are in a very |
- * narrow scope for this file. |
- * @type {Object} |
- */ |
- var c = {}; |
- |
- /** |
- * Replaces html references with anchor tags to the same. |
- * @param {String} className CSS class to operate on. |
- */ |
- function autoLink(className) { |
- var comments = document.querySelectorAll(className); |
- for(var i = 0; i < comments.length; i++) { |
- comments[i].innerHTML = comments[i].innerHTML.replace( |
- /https?:\/\/[^ \t\n<]*/g, '<a href="$&">$&</a>'); |
- } |
- }; |
- |
- window.addEventListener("load", function() { |
- autoLink('.DevComment'); |
- }, false); |
- |
- /** |
- * This is the indicator for whether we are in console or waterfall |
- * mode, or some future resource. |
- * @type {String} |
- */ |
- c.viewtype = location.pathname.split('/').slice(-1); |
- |
- /** |
- * Returns a search string portion including marker, or an empty string. |
- * optional. |
- * @param {String} opt_s A search string, or some form of emptiness. |
- * @returns {!String} |
- */ |
- function search(opt_s) { |
- return opt_s ? '?' + opt_s.replace(/^[?]/, '') : ''; |
- }; |
- |
- /** |
- * Replicates a string. |
- * @param {Number} i A whole number of repetitions. |
- * @param {String} x The string to be repeated. |
- * @returns {!String} |
- */ |
- function repeat(i, x){ |
- var t = '' |
- for (j = 0; j < i; j++) { t += x; } |
- return t; |
- }; |
- |
- /** |
- * A simple HTML table string. |
- * @param {String} attributes A set of HTML attributes for the table. |
- * @param {String} contents The contents. |
- * @returns {!String} |
- */ |
- function table(attributes, contents) { |
- return '<table ' + attributes + '>' + contents + '</table>\n'; |
- }; |
- |
- /** |
- * A simple HTML div string. |
- * @param {String} attributes A set of HTML attributes for the div. |
- * @param {String} contents The contents. |
- * @returns {!String} |
- */ |
- function div(attributes, contents) { |
- return '<div ' + attributes + '>' + contents + '</div>'; |
- }; |
- |
- /** |
- * A simple HTML table row string. |
- * @param {String} attributes A set of HTML attributes for the table row. |
- * @param {String} contents The contents. |
- * @returns {!String} |
- */ |
- function tr(contents) { |
- return '<tr>' + contents + '</tr>\n'; |
- }; |
- |
- /** |
- * A simple HTML table cell string. |
- * @param {String} attributes A set of HTML attributes for the table cell. |
- * @param {String} contents The contents. |
- * @returns {!String} |
- */ |
- function td(attributes, contents) { |
- return '<td ' + attributes + '>' + contents + '</td>'; |
- }; |
- |
- /** |
- * A simple HTML anchor string. |
- * @param {String} url The value for the href. |
- * @param {String} attributes A set of HTML attributes for the table. |
- * @param {String} contents The contents. |
- * @returns {!String} |
- */ |
- function a(url, contents, attributes) { |
- return '<a href="' + url + '" ' + attributes + '>' + contents + '</a>'; |
- }; |
- |
- /** |
- * Gives an HTML anchor string to the specified URL, but of the same view |
- * type as the current page. |
- * @param {String} url The URL portion up to the view. |
- * @param {String} search_opt A the query portion. |
- * @param {String} contents The contents for the tag. |
- * @returns {!String} |
- */ |
- function aView(url, search_opt, contents) { |
- return a((url ? url + '/' : '') + c.viewtype + search(search_opt), |
- contents, '') |
- }; |
- |
- /** |
- * A simple HTML iframe string. |
- * @param {String} attributes A set of HTML attributes for the table. |
- * @param {String} url The source of the iframe. |
- * @returns {!String} the iframe or an empty string if noframe is specified. |
- */ |
- function iFrame(attributes, url) { |
- if (window.location.href.search('noframe') == -1) { |
- return '<iframe ' + attributes + ' src="' + url + '"></iframe>'; |
- } |
- return '' |
- }; |
-</script> |
- |
-<div class="Announcement"> |
- |
-<iframe width="100%" height="44" frameborder="0" scrolling="no" src="http://chromium-status.appspot.com/current"></iframe> |
- |
-<center style="padding: 0 7px"> |
- <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); -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);"> |
- <tr> |
- <td width="29%"> |
- <table valign="top" width="100%"> |
- <tr> |
- <td style="text-align: right;"> |
- <b>Builds:</b> |
- </td> |
- <td> |
- <a href="http://commondatastorage.googleapis.com/chromium-browser-continuous/index.html">continuous</a> | |
- <a href="http://build.chromium.org/f/chromium/symsrv/index.html">symbols</a> | |
- <a href="http://chromium-status.appspot.com">status</a> |
- </td> |
- </tr> |
- <tr> |
- <td style="text-align: right;"> |
- <b>Dashboards:</b> |
- </td> |
- <td> |
- <a href="http://build.chromium.org/f/chromium/perf/dashboard/overview.html">perf</a> | |
- <a href="http://build.chromium.org/f/chromium/perf/dashboard/memory.html">memory</a> | |
- <a href="http://build.chromium.org/f/chromium/perf/dashboard/sizes.html">sizes</a> | |
- <a href="http://build.chromium.org/f/chromium/coverage/">coverage</a> | |
- <a href="http://build.chromium.org/f/chromium/flakiness/">flakiness</a> | |
- <a href="http://build.chromium.org/p/chromium/stats">stats</a> |
- </td> |
- </tr> |
- <tr> |
- <td style="text-align: right;"> |
- <b>Chromium:</b> |
- </td> |
- <td> |
- <a href="http://src.chromium.org/viewvc/chrome">sources</a> | |
- <a href="http://codereview.chromium.org/">reviews</a> | |
- <a href="http://code.google.com/p/chromium/issues/list?can=2&q=&sort=pri+mstone&colspec=ID%20Stars%20Pri%20Area%20Type%20Status%20Summary%20Modified%20Owner%20Mstone">bugs</a> | |
- <a href="http://dev.chromium.org/Home">dev</a> | |
- <a href="http://www.google.com/support/chrome/">support</a> |
- </td> |
- </tr> |
- <tr> |
- <td style="text-align: right;"> |
- <b>Sheriffs:</b> |
- </td> |
- <td> |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff.js'></script>,<br> |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_memory.js'></script>(Memory), |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_nacl.js'></script>(NaCl),<br> |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_perf.js'></script>(Perf), |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_cros_mtv.js'></script>, |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_cros_nonmtv.js'></script>(CrOS),<br> |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_android.js'></script>(Android),<br> |
- <a href="https://www.google.com/calendar/render?cid=google.com_iqfka4i9asiva67vlqqf1es094%40group.calendar.google.com">trooper schedule</a> |
- </td> |
- </tr> |
- <tr> |
- <td style="text-align: right;"> |
- <b>Gardeners:</b> |
- </td> |
- <td> |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_webkit.js'></script>(WebKit), |
- <script src='http://chromium-build.appspot.com/p/chromium/sheriff_cr_cros_gardeners.js'></script> |
- (<a href="http://dev.chromium.org/developers/tree-sheriffs/chrome-in-chromeos-gardening">ChromeOS</a>) |
- </td> |
- </tr> |
- <tr> |
- <td style="text-align: right;"> |
- <b>Navigate:</b> |
- </td> |
- <td colspan="2"> |
- <script> |
- document.write([ |
- a("http://dev.chromium.org/developers/testing/chromium-build-infrastructure/tour-of-the-chromium-buildbot", "about", ""), |
- a("./waterfall/help", "customize", ""), |
- a("./waterfall", "waterfall", ""), |
- a("./console", "console", ""), |
- a("../tryserver.chromium/waterfall", "try", ""), |
- aView("../chromium.fyi", "", "experimental"), |
- a("./waterfall?show_events=true&failures_only=true", "failures", ""), |
- aView("../chromium.memory", "", "memory"), |
- aView("../chromium.memory.fyi", "", "memory fyi"), |
- aView("../chromium.chromiumos", "", "chromiumos chrome"), |
- aView("../chromiumos", "", "chromiumos team"), |
- aView("../client.nacl", "", "NaCl")].join(' | ')); |
- </script> |
- </td> |
- </tr> |
- </table> |
- </td> |
- <td width="1" bgcolor="#CCCCCC"> |
- </td> |
- <td width="1%"> |
- </td> |
- <td width="70%"> |
- <table width="100%"> |
- <script language="javascript"> |
- c.chromium = ''; |
- c.chromium_chromiumos = ''; |
- c.webkit = 'builder=Webkit+Win+Builder+%28deps%29&builder=Webkit+Win+%28deps%29&builder=Webkit+Mac+Builder+%28deps%29&builder=Webkit+Mac10.6+%28deps%29&builder=Webkit+Linux+%28deps%29'; |
- c.memory = ''; |
- c.memory_fyi = ''; |
- c.perf = ''; |
- c.cros = ''; |
- c.chrome = ''; |
- c.lkgr = ''; |
- c.pyauto = ''; |
- |
- c.status = '../chromium'; |
- c.status_cros = '../chromium.chromiumos'; |
- c.status_webkit = '../chromium.webkit'; |
- c.status_memory = '../chromium.memory'; |
- c.status_memory_fyi = '../chromium.memory.fyi'; |
- c.status_chrome = '../chromium.chrome'; |
- c.status_perf = '../chromium.perf'; |
- c.status_lkgr = '../chromium.lkgr'; |
- c.status_pyauto = '../chromium.pyauto'; |
- |
- /** |
- * Builds a reference for the iframe with boxes. |
- * @param {String} x the name of the waterfall. |
- * @returns {String} The URL. |
- */ |
- function BarUrl(x) { |
- return 'http://chromium-build.appspot.com/p/' + x + |
- '/horizontal_one_box_per_builder'; |
- } |
- c.bar = BarUrl('chromium') |
- c.bar_webkit = 'http://build.chromium.org/p/chromium.webkit/horizontal_one_box_per_builder'; |
- c.bar_memory = BarUrl('chromium.memory'); |
- c.bar_memory_fyi = BarUrl('chromium.memory.fyi'); |
- c.bar_perf = BarUrl('chromium.perf'); |
- c.bar_chrome = BarUrl('chromium.chrome'); |
- c.bar_lkgr = BarUrl('chromium.lkgr'); |
- c.bar_pyauto = BarUrl('chromium.pyauto'); |
- c.bar_cros = BarUrl('chromium.chromiumos'); |
- |
- |
- /** |
- * Joins URL and search terms. |
- * @param {String} type The Url without the cgi search portion. |
- * @param {String} content The parameters for the sub-selection |
- * inside the master. Optional. |
- * @returns {String} A completed URL. |
- */ |
- function GetUrl(type, content) { |
- return type + search(content); |
- } |
- |
- /** |
- * Callback to replace the LKGR link with one that identifies |
- * the current revision for the LKGR. |
- */ |
- function DisplayLKGR() { |
- var xmlHttp = new XMLHttpRequest(); |
- /* |
- * Uncomment when this app allows loading the JSON remotely. |
- * var lkgrPath = 'http://chromium-build-master.appspot.com/p/chromium.lkgr/' + |
- * 'json/builders/Linux%20x64/builds/-1/as_text=1.json'; |
- */ |
- var lkgrPath = c.status_lkgr + |
- '/json/builders/Linux%20x64/builds/-1?as_text=1'; |
- var lkgrLink = document.getElementById('LKGRLink'); |
- xmlHttp.open('GET', lkgrPath, false); |
- xmlHttp.send(null); |
- if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { |
- var buildData; |
- if (typeof (JSON) !== 'undefined' && |
- typeof (JSON.parse) === 'function') { |
- buildData = JSON.parse(xmlHttp.responseText); |
- } else { |
- buildData = eval('(' + xmlHttp.responseText + ')'); |
- } |
- var properties = buildData['properties']; |
- for (var i = 0; i < properties.length; i++) { |
- if (properties[i][0] == 'got_revision') { |
- lkgrLink.innerHTML = 'LKGR<br>(' + properties[i][1] + ')'; |
- return; |
- } |
- } |
- } |
- } |
- |
- c.default_iframe_properties = [ |
- 'width="100%"', |
- 'height="20"', |
- 'frameborder="0"', |
- 'scrolling="no"', |
- ].join(' '); |
- |
- /** |
- * The most detailed specification of a builder bar with boxes. |
- * Reutrns an HTMLstring with 2 <td>s |
- * @param {String} status_url URL portion for the title link. |
- * @param {String} bar_url URL portion for the array of boxes. |
- * @param {String} content specification for the references, e.g.. |
- * @param {String} name what to call this bar. |
- * @param {String} bar_properties extra attributes for the array |
- * of boxes portion. |
- * @param {String} link_properties extra attributes for the name |
- * portion that is a link. |
- * @returns {String} |
- */ |
- function HTMLBaseBar(status_url, bar_url, content, name, |
- bar_properties, link_properties) { |
- return td('', |
- a(GetUrl(status_url, content), name, |
- link_properties)) + |
- td(bar_properties, |
- iFrame(c.default_iframe_properties, |
- GetUrl(bar_url, content))); |
- } |
- |
- /** |
- * The more common specification of a builder bar with boxes. |
- * Presume to take an entire row. |
- * @param {String} status_url URL portion for the title link. |
- * @param {String} bar_url URL portion for the array of boxes. |
- * @param {String} content specification for the references, e.g.. |
- * @param {String} name what to call this bar. |
- * @returns {String} |
- */ |
- function HTMLBar(status_url, bar_url, content, name) { |
- return tr(HTMLBaseBar(status_url, bar_url, content, name, |
- 'width="99%" colspan=9', '')); |
- } |
- |
- /** |
- * A specification of a builder bar with boxes, which is one of |
- * multiple in a row. |
- * Note that since these are elements of a table, percents |
- * can be irrelevant to the final layout. |
- * @param {String} status_url URL portion for the title link. |
- * @param {String} bar_url URL portion for the array of boxes. |
- * @param {String} content specification for the references, e.g.. |
- * @param {String} name what to call this bar. |
- * @param {String} pc percent of the line to allocat to the boxes. |
- * @returns {String} |
- */ |
- function HTMLSubBar(status_url, bar_url, content, name, pc) { |
- return HTMLBaseBar(status_url, bar_url, content, name, |
- 'width="' + pc + '"', ''); |
- } |
- |
- document.write(tr(td( |
- 'colspan=10 width="99%"', |
- div( |
- 'class="closerbox" width="100%"', |
- div('class="title" width="100%" height="10px"', |
- a('http://chromium-status.appspot.com', 'Tree closers')) + |
- table( |
- 'width="100%"', |
- HTMLBar(c.status, c.bar, c.chromium, 'Chromium') + |
- tr(HTMLSubBar(c.status_cros, c.bar_cros, c.cros, |
- 'ChromiumOS', '30%') + |
- HTMLSubBar(c.status_chrome, c.bar_chrome, c.chrome, |
- 'Official', '35%') + |
- HTMLSubBar(c.status_memory, c.bar_memory, c.memory, |
- 'Memory', '25%'))))))); |
- |
- document.write(tr( |
- HTMLBaseBar(c.status_webkit, c.bar_webkit, c.webkit, |
- 'Webkit', 'colspan=3', '') + |
- HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, |
- 'Perf', 'colspan=5', ''))); |
- |
- document.write(tr( |
- HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, |
- 'LKGR', 'width="10%"', 'id="LKGRLink"') + |
- HTMLBaseBar(c.status_pyauto, c.bar_pyauto, c.pyauto, |
- 'PyAuto', 'width="15%"', '') + |
- HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi, |
- 'Memory<br>FYI', 'width="50%" colspan=5', ''))); |
- |
- setTimeout('DisplayLKGR()', 100); |
- </script> |
- </table> |
- </td> |
- </tr> |
- </table> |
-</center> |
- |
-</div> |
-<hr/> |
- |
- <div class="content"> |
-<div align="center"> |
- <table width="95%" class="Grid" border="0" cellspacing="0"> |
- <tr> |
- <td width="33%" align="left" class="left_align"> |
- </td> |
- <td width="33%" align="center" class="center_align"> |
- <div align="center"> |
- <table class="info"> |
- <tr> |
- <td>Legend: </td> |
- <td class='legend success' title='All tests passed'>Passed</td> |
- <td class='legend failure' title='There is a new failure. Take a look!'>Failed</td> |
- <td class='legend warnings' title='It was failing before, and it is still failing. Make sure you did not introduce new regressions'>Failed Again</td> |
- <td class='legend running' title='The tests are still running'>Running</td> |
- <td class='legend exception' title='Something went wrong with the test, there is no result'>Exception</td> |
- <td class='legend offline' title='The builder is offline, as there are no slaves connected to it'>Offline</td> |
- <td class='legend notstarted' title='No result yet.'>No data</td> |
- </tr> |
- </table> |
- </div> |
- </td> |
- <td width="33%" align="right" class="right_align"> |
- <script type="text/javascript"> |
-// <![CDATA[ |
- function reload_page() { |
- name_value = document.getElementById('namebox').value |
- if (document.location.href.lastIndexOf('?') == -1) |
- document.location.href = document.location.href+ '?name=' + name_value; |
- else |
- document.location.href = document.location.href+ '&name=' + name_value; |
- } |
-// ]]> |
- </script> |
- <input id='namebox' name='name' type='text' style='color:#999;' |
- onblur='this.value = this.value || this.defaultValue; this.style.color = "#999";' |
- onfocus='this.value=""; this.style.color = "#000";' |
- value='Personalized for...'/> |
- <input type='submit' value='Go' onclick='reload_page()'/> |
- </td> |
- </tr> |
- </table> |
-</div> |
- |
-<br/> |
- |
- |
-<div align="center"> |
-<table width="96%" class="ConsoleData"> |
- |
- <tr> |
- <td width="1%"> |
- </td> |
- <td width="1%"> |
- </td> |
- <td class='DevStatus Alt first ' width='6%'> |
- clobber |
- </td> |
- <td class='DevStatus Alt ' width='50%'> |
- windows |
- </td> |
- <td class='DevStatus Alt ' width='26%'> |
- mac |
- </td> |
- <td class='DevStatus Alt ' width='14%'> |
- linux |
- </td> |
- <td class='DevStatus Alt last' width='1%'> |
- android |
- </td> |
- </tr> |
- <tr class='DevStatusSpacing'> |
- </tr> |
- |
- <tr> |
- <td width="1%"> |
- </td> |
- <td width="1%"> |
- </td> |
- <td class='DevSlave Alt '> |
- <table width="100%"> |
- <tr> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win' title='Win' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac' title='Mac' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux' title='Linux' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20x64' title='Linux x64' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevSlave Alt '> |
- <table width="100%"> |
- <tr> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win%20Builder' title='Win Builder' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%281%29' title='XP Tests (1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%282%29' title='XP Tests (2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%283%29' title='XP Tests (3)' class='DevSlaveBox failure' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Vista%20Tests%20%281%29' title='Vista Tests (1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Vista%20Tests%20%282%29' title='Vista Tests (2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Vista%20Tests%20%283%29' title='Vista Tests (3)' class='DevSlaveBox failure' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%281%29' title='Win7 Tests (1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%282%29' title='Win7 Tests (2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%283%29' title='Win7 Tests (3)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Sync' title='Win7 Sync' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/NACL%20Tests' title='NACL Tests' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/NACL%20Tests%20%28x64%29' title='NACL Tests (x64)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Chrome%20Frame%20Tests%20%28ie6%29' title='Chrome Frame Tests (ie6)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Chrome%20Frame%20Tests%20%28ie7%29' title='Chrome Frame Tests (ie7)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Chrome%20Frame%20Tests%20%28ie8%29' title='Chrome Frame Tests (ie8)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win%20Builder%202010%20%28dbg%29' title='Win Builder 2010 (dbg)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win%20Builder%20%28dbg%29' title='Win Builder (dbg)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%28dbg%29%281%29' title='XP Tests (dbg)(1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%28dbg%29%282%29' title='XP Tests (dbg)(2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%28dbg%29%283%29' title='XP Tests (dbg)(3)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%28dbg%29%284%29' title='XP Tests (dbg)(4)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%28dbg%29%285%29' title='XP Tests (dbg)(5)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/XP%20Tests%20%28dbg%29%286%29' title='XP Tests (dbg)(6)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%28dbg%29%281%29' title='Win7 Tests (dbg)(1)' class='DevSlaveBox offline' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%28dbg%29%282%29' title='Win7 Tests (dbg)(2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%28dbg%29%283%29' title='Win7 Tests (dbg)(3)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%28dbg%29%284%29' title='Win7 Tests (dbg)(4)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%28dbg%29%285%29' title='Win7 Tests (dbg)(5)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win7%20Tests%20%28dbg%29%286%29' title='Win7 Tests (dbg)(6)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Interactive%20Tests%20%28dbg%29' title='Interactive Tests (dbg)' class='DevSlaveBox failure' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Win%20Aura' title='Win Aura' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevSlave Alt '> |
- <table width="100%"> |
- <tr> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%20Builder' title='Mac Builder' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac10.5%20Tests%20%281%29' title='Mac10.5 Tests (1)' class='DevSlaveBox failure' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac10.5%20Tests%20%282%29' title='Mac10.5 Tests (2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac10.5%20Tests%20%283%29' title='Mac10.5 Tests (3)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac10.6%20Tests%20%281%29' title='Mac10.6 Tests (1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac10.6%20Tests%20%282%29' title='Mac10.6 Tests (2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac10.6%20Tests%20%283%29' title='Mac10.6 Tests (3)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac10.6%20Sync' title='Mac10.6 Sync' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%20Builder%20%28dbg%29' title='Mac Builder (dbg)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%281%29' title='Mac 10.5 Tests (dbg)(1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%282%29' title='Mac 10.5 Tests (dbg)(2)' class='DevSlaveBox offline' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%283%29' title='Mac 10.5 Tests (dbg)(3)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%284%29' title='Mac 10.5 Tests (dbg)(4)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%281%29' title='Mac 10.6 Tests (dbg)(1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%282%29' title='Mac 10.6 Tests (dbg)(2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%283%29' title='Mac 10.6 Tests (dbg)(3)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%284%29' title='Mac 10.6 Tests (dbg)(4)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevSlave Alt '> |
- <table width="100%"> |
- <tr> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Builder%20x64' title='Linux Builder x64' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Tests%20x64' title='Linux Tests x64' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Sync' title='Linux Sync' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Builder%20%28dbg%29' title='Linux Builder (dbg)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Tests%20%28dbg%29%281%29' title='Linux Tests (dbg)(1)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Tests%20%28dbg%29%282%29' title='Linux Tests (dbg)(2)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Builder%20%28dbg%29%28shared%29' title='Linux Builder (dbg)(shared)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Tests%20%28dbg%29%28shared%29' title='Linux Tests (dbg)(shared)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Linux%20Clang%20%28dbg%29' title='Linux Clang (dbg)' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevSlave Alt last'> |
- <table width="100%"> |
- <tr> |
- |
- <td class='DevSlaveBox'> |
- <a href='./builders/Android%20Builder' title='Android Builder' class='DevSlaveBox success' target="_blank"> |
- </a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127236" target="_blank">127236</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- achuith<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Aura' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Clang (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Android Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Enable tap to click by default on lumpy.<br/><br/>BUG=NONE<br/>TEST=Tap to click should be on by default on lumpy.<br/>Review URL: https://chromiumcodereview.appspot.com/9705080 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127234" target="_blank">127234</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- michaelbai<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Aura' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Clang (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Android Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- The SQLHandler implementation for urls table.<br/><br/><br/>BUG=<br/>TEST=<br/><br/><br/>Review URL: http://codereview.chromium.org/9682002 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127233" target="_blank">127233</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- dmikurube<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Aura' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Clang (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Android Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Add a PyAuto API to dump heap profiles. (retry of r127070)<br/><br/><br/>BUG=114301<br/>TEST=none<br/><br/>Review URL: http://codereview.chromium.org/9704076 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127232" target="_blank">127232</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- fischman<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Aura' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Clang (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Android Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Don't trigger second request on missing instance size in Content-Range.<br/><br/>Previously we were relying on the parser for multipart/x-mixed-replace to parse Content-Range. This CL instead introduces a parser that implements HTTP/1.1 (allowing instance-size to be "*").<br/><br/>BUG=104795<br/><br/>Review URL: http://codereview.chromium.org/9703073 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127231" target="_blank">127231</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- oshima<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win Aura' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Clang (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Android Builder' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Native bounds support to host windows.<br/>* Moved SingleMonitorManager into separate file. This is a default<br/>MonitorManager and creates RootWindow for PrimaryMonitor.<br/>* Added MonitorObserver and moved monitor change logic to ash.<br/>* MultiMonitorManager class and its layout logic will live in ash too.<br/>* Added ability to move host window so that we can re-arrange root window when<br/>switching primary monitor.<br/>* Removed monitor_manager_x11, which I committed by accident.<br/>* Use (0,0) for monitor/workarea bounds because the coordinate isn't translated yet<br/> for non primary screens.<br/><br/>BUG=115510<br/>TEST=none<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9703083 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127230" target="_blank">127230</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- pkasting<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Clean up first run:<br/><br/>* Replace the idea of a FirstRunBrowserProcess, which existed solely to prevent a couple of classes from trying to make network connections, with passing the "disable background networking" switch to the relevant process.<br/>* Eliminate a bunch of unused machinery to try and parent the import progress window. This was always just parented to NULL.<br/>* A few other small cleanups in first_run_win.cc.<br/><br/>BUG=none<br/>TEST=none<br/>Review URL: https://chromiumcodereview.appspot.com/9702103 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127229" target="_blank">127229</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- rohitbm<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Updating the Netflix plugin version info for plugins check test.<br/>Review URL: https://chromiumcodereview.appspot.com/9704100 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127228" target="_blank">127228</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- elijahtaylor<span style="display:none">ohnoyoudont</span>@google.com |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Mono builder cleanup:<br/><br/>- restructure build scripts to allow 2 builds + 1 archive per checkin<br/>- build 32- and 64-bit on one bot so a full package is built<br/>- fix paths in tarball to be relative (lib/, lib32/, include/, etc)<br/><br/>BUG=115363<br/>TEST=bots,manual<br/>Review URL: https://chromiumcodereview.appspot.com/9689021 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127227" target="_blank">127227</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- reveman<span style="display:none">ohnoyoudont</span>@google.com |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Avoid using skia::ScopedPlatformPaint in RenderTextLinux::EnsureLayout(). This allows RenderTextLinux to be used for rendering to platform independent canvas.<br/><br/>BUG=111587<br/>TEST=none<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9665011 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127226" target="_blank">127226</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- pkasting<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Clean up chrome/browser/search_engines/: <br/><br/>* Remove the notion of SearchEngineType from TemplateURL. It's now solely the domain of the prepopulate data. <br/>* Simplify TemplateURL IPC code. <br/>* Remove TemplateURLRef::SetGoogleBaseURL(), which was an unnecessary passthrough to another public static function. <br/>* Use "google.*"-like strings consistently for Google base URLs in tests; this will become important later when keyword autogeneration changes to depend on the host being a Google URL. <br/>* Define base SearchTermsData::GetApplicationLocale() and GetRlzParameterValue() implementations and remove various similar definitions elsewhere. <br/>* De-inline functions we don't normally inline (constructors, virtuals, etc.). <br/>* Remove some unnecessary TemplateURLRef friend declarations. <br/>* Remove TemplateURL::set_prepopulated() and add_image_ref() manipulators as all callers were already friends or are now. (First of a number of changes that move toward making TemplateURL more immutable so we can then remove "const" from the |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127225" target="_blank">127225</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- altimofeev<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- [cros] Adds OWNERS file for WebUI handlers directory<br/>BUG=none<br/>TEST=none<br/><br/><br/>Review URL: http://codereview.chromium.org/9714001 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127224" target="_blank">127224</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- erikwright<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Define a meta-target for the win_cf bot.<br/><br/>BUG=None<br/>TEST=None<br/><br/><br/>Review URL: http://codereview.chromium.org/9699122 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127223" target="_blank">127223</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- wez<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25051", event); return false;' |
- title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinuxx6425051' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25926", event); return false;' |
- title='Win Builder ETA: 344s' class='DevStatusBox running TagWinBuilder25926' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Vista Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='NACL Tests (x64)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17646", event); return false;' |
- title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox running TagWinBuilder2010dbg17646' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27234", event); return false;' |
- title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running TagWinBuilderdbg27234' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8001", event); return false;' |
- title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAura8001' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33138", event); return false;' |
- title='Mac Builder ETA: 218s' class='DevStatusBox running TagMacBuilder33138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.6 Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17640", event); return false;' |
- title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running TagMacBuilderdbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38951", event); return false;' |
- title='Linux Builder x64 ETA: 60s' class='DevStatusBox running TagLinuxBuilderx6438951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests x64' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Sync' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23434", event); return false;' |
- title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox running TagLinuxBuilderdbg23434' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20278", event); return false;' |
- title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBox running TagLinuxBuilderdbgshared20278' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22076", event); return false;' |
- title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running TagLinuxClangdbg22076' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2895", event); return false;' |
- title='Android Builder ETA: 0s' class='DevStatusBox running TagAndroidBuilder2895' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Check explicitly for PPB_VarArrayBuffer v1.0 in C++ wrapper.<br/><br/>BUG=107398<br/><br/><br/>Review URL: http://codereview.chromium.org/9701090 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127222" target="_blank">127222</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- anantha<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9952", event); return false;' |
- title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21369", event); return false;' |
- title='Linux ETA: 1278s' class='DevStatusBox running TagLinux21369' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25050", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425050' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25925", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25925' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13555", event); return false;' |
- title='XP Tests (1) ETA: 568s' class='DevStatusBox running TagXPTests113555' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13224", event); return false;' |
- title='XP Tests (2) ETA: 805s' class='DevStatusBox running TagXPTests213224' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10082", event); return false;' |
- title='XP Tests (3) ETA: 1579s' class='DevStatusBox running TagXPTests310082' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17521", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117521' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16405", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216405' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12819", event); return false;' |
- title='Vista Tests (3) ETA: 249s' class='DevStatusBox running TagVistaTests312819' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4897", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14897' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4296", event); return false;' |
- title='Win7 Tests (2) ETA: 663s' class='DevStatusBox running TagWin7Tests24296' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4309", event); return false;' |
- title='Win7 Tests (3) ETA: 324s' class='DevStatusBox running TagWin7Tests34309' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17782", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17782' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23389", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23389' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26304", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426304' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23589", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623589' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24940", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724940' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24374", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824374' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17645", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17645' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27233", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27233' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19605", event); return false;' |
- title='XP Tests (dbg)(1) ETA: 419s' class='DevStatusBox running TagXPTestsdbg119605' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14472", event); return false;' |
- title='XP Tests (dbg)(4) ETA: 3924s' class='DevStatusBox running TagXPTestsdbg414472' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4964", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14964' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3588", event); return false;' |
- title='Win7 Tests (dbg)(2) ETA: 1378s' class='DevStatusBox running TagWin7Testsdbg23588' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3846", event); return false;' |
- title='Win7 Tests (dbg)(3) ETA: 863s' class='DevStatusBox running TagWin7Testsdbg33846' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3872", event); return false;' |
- title='Win7 Tests (dbg)(4) ETA: 1446s' class='DevStatusBox running TagWin7Testsdbg43872' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3864", event); return false;' |
- title='Win7 Tests (dbg)(5) ETA: 1355s' class='DevStatusBox running TagWin7Testsdbg53864' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3891", event); return false;' |
- title='Win7 Tests (dbg)(6) ETA: 919s' class='DevStatusBox running TagWin7Testsdbg63891' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=8000", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura8000' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33137", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33137' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13824", event); return false;' |
- title='Mac10.5 Tests (2) ETA: 442s' class='DevStatusBox running TagMac105Tests213824' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10231", event); return false;' |
- title='Mac10.5 Tests (3) ETA: 829s' class='DevStatusBox running TagMac105Tests310231' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18426", event); return false;' |
- title='Mac10.6 Tests (1) ETA: 1838s' class='DevStatusBox running TagMac106Tests118426' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14330", event); return false;' |
- title='Mac10.6 Tests (2) ETA: 235s' class='DevStatusBox running TagMac106Tests214330' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11469", event); return false;' |
- title='Mac10.6 Tests (3) ETA: 1141s' class='DevStatusBox running TagMac106Tests311469' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15141", event); return false;' |
- title='Mac10.6 Sync ETA: 194s' class='DevStatusBox running TagMac106Sync15141' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17639", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17639' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16570", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) ETA: 2698s' class='DevStatusBox running TagMac105Testsdbg116570' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16184", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) ETA: 1550s' class='DevStatusBox running TagMac105Testsdbg316184' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19179", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) ETA: 2505s' class='DevStatusBox running TagMac106Testsdbg119179' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18494", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) ETA: 1219s' class='DevStatusBox running TagMac106Testsdbg218494' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17464", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) ETA: 2459s' class='DevStatusBox running TagMac106Testsdbg317464' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38950", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438950' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19238", event); return false;' |
- title='Linux Tests x64 ETA: 1567s' class='DevStatusBox running TagLinuxTestsx6419238' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20265", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20265' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23433", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23433' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18451", event); return false;' |
- title='Linux Tests (dbg)(2) ETA: 1153s' class='DevStatusBox running TagLinuxTestsdbg218451' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20277", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20277' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./waterfall", event); return false;' |
- title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted ' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22075", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22075' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2894", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2894' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Disabling special_tabs.SpecialTabsTest.testSpecialURLTabs, which was enabled only on Linux. This is failing on main pyauto waterfall also. <br/>Bug=118474<br/>Review URL: https://chromiumcodereview.appspot.com/9705115 |
- </td> |
- </tr> |
- |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127220" target="_blank">127220</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- tbreisacher<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9952", event); return false;' |
- title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12581", event); return false;' |
- title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21368", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21368' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25049", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425049' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25924", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25924' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13554", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113554' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13223", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213223' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10081", event); return false;' |
- title='XP Tests (3) failed browser_tests' class='DevStatusBox failure TagXPTests310081' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17520", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117520' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16404", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216404' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12818", event); return false;' |
- title='Vista Tests (3) failed browser_tests' class='DevStatusBox failure TagVistaTests312818' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4896", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14896' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4295", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24295' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4308", event); return false;' |
- title='Win7 Tests (3) build successful' class='DevStatusBox success TagWin7Tests34308' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17781", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17781' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23388", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23388' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26303", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426303' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23588", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623588' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24939", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724939' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24373", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824373' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17644", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17644' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27232", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27232' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19604", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119604' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14551", event); return false;' |
- title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running TagXPTestsdbg214551' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15771", event); return false;' |
- title='XP Tests (dbg)(3) ETA: 2494s' class='DevStatusBox running TagXPTestsdbg315771' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14472", event); return false;' |
- title='XP Tests (dbg)(4) ETA: 3924s' class='DevStatusBox running TagXPTestsdbg414472' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12207", event); return false;' |
- title='XP Tests (dbg)(5) ETA: 2027s' class='DevStatusBox running TagXPTestsdbg512207' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9109", event); return false;' |
- title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running TagXPTestsdbg69109' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4963", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14963' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3587", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23587' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3845", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33845' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3871", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43871' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3863", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53863' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3890", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63890' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21449", event); return false;' |
- title='Interactive Tests (dbg) ETA: 1923s' class='DevStatusBox running TagInteractiveTestsdbg21449' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7999", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7999' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33136", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33136' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16786", event); return false;' |
- title='Mac10.5 Tests (1) ETA: 721s' class='DevStatusBox running TagMac105Tests116786' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13823", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213823' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10230", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310230' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18425", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118425' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14329", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214329' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11468", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311468' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15140", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15140' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17638", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17638' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16570", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) ETA: 2698s' class='DevStatusBox running TagMac105Testsdbg116570' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16288", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216288' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16183", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316183' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7422", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) ETA: 424s' class='DevStatusBox running TagMac105Testsdbg47422' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19178", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119178' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218493' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17463", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317463' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) ETA: 25s' class='DevStatusBox running TagMac106Testsdbg48493' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38949", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438949' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19237", event); return false;' |
- title='Linux Tests x64 build successful' class='DevStatusBox success TagLinuxTestsx6419237' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20264", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20264' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23432", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23432' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15900", event); return false;' |
- title='Linux Tests (dbg)(1) ETA: 2030s' class='DevStatusBox running TagLinuxTestsdbg115900' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18450", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218450' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20276", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20276' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5716", event); return false;' |
- title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox running TagLinuxTestsdbgshared5716' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22074", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22074' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2893", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2893' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Revert 127219 - Make test failure clearer<br/><br/>BUG=none<br/>TEST=SharedMemoryProcessTest.Tasks<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9703126<br/><br/>TBR=tbreisacher@chromium.org<br/>Review URL: https://chromiumcodereview.appspot.com/9716002 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails '> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>XP Tests (3): browser_tests 2 flaky failed 1 Flakiness dashboard - <a href="console/../builders/XP%20Tests%20%283%29/builds/10081/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/XP%20Tests%20%283%29/builds/10081/steps/browser_tests/logs/FaviconChange"> FaviconChange </a></li> |
- <li>Vista Tests (3): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Vista%20Tests%20%283%29/builds/12818/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Vista%20Tests%20%283%29/builds/12818/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127219" target="_blank">127219</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- tbreisacher<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9952", event); return false;' |
- title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12581", event); return false;' |
- title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21367", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25048", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425048' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25923", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25923' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13554", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113554' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13223", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213223' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10081", event); return false;' |
- title='XP Tests (3) failed browser_tests' class='DevStatusBox failure TagXPTests310081' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17520", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117520' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16403", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216403' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12818", event); return false;' |
- title='Vista Tests (3) failed browser_tests' class='DevStatusBox failure TagVistaTests312818' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4896", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14896' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4295", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24295' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4308", event); return false;' |
- title='Win7 Tests (3) build successful' class='DevStatusBox success TagWin7Tests34308' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17781", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17781' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23387", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23387' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26302", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426302' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23587", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623587' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24938", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724938' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24372", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824372' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17643", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17643' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27231", event); return false;' |
- title='Win Builder (dbg) failed compile' class='DevStatusBox failure TagWinBuilderdbg27231' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19604", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119604' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14551", event); return false;' |
- title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running TagXPTestsdbg214551' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15771", event); return false;' |
- title='XP Tests (dbg)(3) ETA: 2494s' class='DevStatusBox running TagXPTestsdbg315771' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14472", event); return false;' |
- title='XP Tests (dbg)(4) ETA: 3924s' class='DevStatusBox running TagXPTestsdbg414472' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12207", event); return false;' |
- title='XP Tests (dbg)(5) ETA: 2027s' class='DevStatusBox running TagXPTestsdbg512207' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9109", event); return false;' |
- title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running TagXPTestsdbg69109' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4963", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14963' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3587", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23587' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3845", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33845' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3871", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43871' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3863", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53863' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3890", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63890' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21449", event); return false;' |
- title='Interactive Tests (dbg) ETA: 1923s' class='DevStatusBox running TagInteractiveTestsdbg21449' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7998", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7998' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33135", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33135' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16785", event); return false;' |
- title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBox failure TagMac105Tests116785' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13823", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213823' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10230", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310230' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18424", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118424' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14329", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214329' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11467", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311467' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15140", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15140' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17637", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17637' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16569", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116569' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16288", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216288' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16183", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316183' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7422", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) ETA: 424s' class='DevStatusBox running TagMac105Testsdbg47422' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19178", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119178' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218493' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17463", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317463' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) ETA: 25s' class='DevStatusBox running TagMac106Testsdbg48493' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38948", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438948' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19236", event); return false;' |
- title='Linux Tests x64 failed browser_tests' class='DevStatusBox failure TagLinuxTestsx6419236' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20263", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20263' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23431", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23431' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15900", event); return false;' |
- title='Linux Tests (dbg)(1) ETA: 2030s' class='DevStatusBox running TagLinuxTestsdbg115900' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18449", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218449' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20275", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20275' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5716", event); return false;' |
- title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox running TagLinuxTestsdbgshared5716' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22073", event); return false;' |
- title='Linux Clang (dbg) failed content_unittests' class='DevStatusBox failure TagLinuxClangdbg22073' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2892", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2892' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Make test failure clearer<br/><br/>BUG=none<br/>TEST=SharedMemoryProcessTest.Tasks<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9703126 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails Alt'> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>XP Tests (3): browser_tests 2 flaky failed 1 Flakiness dashboard - <a href="console/../builders/XP%20Tests%20%283%29/builds/10081/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/XP%20Tests%20%283%29/builds/10081/steps/browser_tests/logs/FaviconChange"> FaviconChange </a></li> |
- <li>Vista Tests (3): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Vista%20Tests%20%283%29/builds/12818/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Vista%20Tests%20%283%29/builds/12818/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- <li>Win Builder (dbg): compile failed - <a href="console/../builders/Win%20Builder%20%28dbg%29/builds/27231/steps/compile/logs/stdio"> stdio </a> - <a href="console/../builders/Win%20Builder%20%28dbg%29/builds/27231/steps/compile/logs/stdio_html"> stdio_html </a> - <a href="console/../builders/Win%20Builder%20%28dbg%29/builds/27231/steps/compile/logs/base_unittests%20-%204093%20error%28s%29"> base_unittests - 4093 error(s) </a> - <a href="console/../builders/Win%20Builder%20%28dbg%29/builds/27231/steps/compile/logs/warnings"> warnings </a></li> |
- <li>Mac10.5 Tests (1): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> |
- <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- <li>Linux Clang (dbg): content_unittests 18 disabled failed 1 - <a href="console/../builders/Linux%20Clang%20%28dbg%29/builds/22073/steps/content_unittests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Clang%20%28dbg%29/builds/22073/steps/content_unittests/logs/MultiDevicesOneMountPoint"> MultiDevicesOneMountPoint </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127218" target="_blank">127218</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- rohitbm<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9952", event); return false;' |
- title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12581", event); return false;' |
- title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21367", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25047", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425047' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25922", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25922' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13553", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113553' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13222", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213222' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10080", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310080' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17519", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117519' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16402", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216402' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12817", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312817' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4895", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14895' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4294", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24294' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4307", event); return false;' |
- title='Win7 Tests (3) failed browser_tests' class='DevStatusBox failure TagWin7Tests34307' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17780", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17780' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23386", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23386' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26301", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426301' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23586", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24937", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724937' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24371", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824371' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17642", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17642' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27230", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27230' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19603", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119603' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14551", event); return false;' |
- title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running TagXPTestsdbg214551' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14471", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414471' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9109", event); return false;' |
- title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running TagXPTestsdbg69109' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4962", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14962' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3587", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23587' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3845", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33845' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3870", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43870' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3862", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53862' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3890", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63890' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21448", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox warnings TagInteractiveTestsdbg21448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7997", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7997' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33134", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33134' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16785", event); return false;' |
- title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBox failure TagMac105Tests116785' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13822", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213822' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10229", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310229' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18424", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118424' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14328", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214328' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11466", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311466' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15139", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15139' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17636", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17636' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16569", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116569' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16183", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316183' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218493' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48492' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38947", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438947' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19236", event); return false;' |
- title='Linux Tests x64 failed browser_tests' class='DevStatusBox failure TagLinuxTestsx6419236' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20262", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20262' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23430", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23430' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18448", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20274", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20274' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5716", event); return false;' |
- title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox running TagLinuxTestsdbgshared5716' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22072", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22072' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2891", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2891' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Netflix plugin 1.5.2 is working on all boards, so enabling Netflix perf tests.<br/>Review URL: https://chromiumcodereview.appspot.com/9714002 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails '> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Win7 Tests (3): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- <li>Mac10.5 Tests (1): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> |
- <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127217" target="_blank">127217</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- fischman<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9952", event); return false;' |
- title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12581", event); return false;' |
- title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21367", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25047", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425047' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25922", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25922' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13553", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113553' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13222", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213222' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10080", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310080' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17519", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117519' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16402", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216402' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12817", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312817' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4895", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14895' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4294", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24294' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4307", event); return false;' |
- title='Win7 Tests (3) failed browser_tests' class='DevStatusBox failure TagWin7Tests34307' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17780", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17780' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23386", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23386' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26301", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426301' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23586", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24937", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724937' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24371", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824371' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17642", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17642' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27230", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27230' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19603", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119603' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14551", event); return false;' |
- title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running TagXPTestsdbg214551' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14471", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414471' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9109", event); return false;' |
- title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running TagXPTestsdbg69109' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4962", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14962' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3587", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23587' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3845", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33845' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3870", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43870' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3862", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53862' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3890", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63890' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21448", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox warnings TagInteractiveTestsdbg21448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7997", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7997' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33134", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33134' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16785", event); return false;' |
- title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBox failure TagMac105Tests116785' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13822", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213822' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10229", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310229' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18424", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118424' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14328", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214328' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11466", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311466' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15139", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15139' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17636", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17636' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16569", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116569' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16183", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316183' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218493' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48492' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38947", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438947' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19236", event); return false;' |
- title='Linux Tests x64 failed browser_tests' class='DevStatusBox failure TagLinuxTestsx6419236' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20262", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20262' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23430", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23430' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18448", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20274", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20274' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5716", event); return false;' |
- title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox running TagLinuxTestsdbgshared5716' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22072", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22072' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2891", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2891' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Trust servers that claim "Accept-Ranges: bytes" but serve a 200 for Range:0-<br/><br/>BUG=110309<br/><br/><br/>Review URL: http://codereview.chromium.org/9701082 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails Alt'> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Win7 Tests (3): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- <li>Mac10.5 Tests (1): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> |
- <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127216" target="_blank">127216</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- mpcomplete<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9952", event); return false;' |
- title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12581", event); return false;' |
- title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21367", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25047", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425047' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25922", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25922' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13553", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113553' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13222", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213222' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10080", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310080' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17519", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117519' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16402", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216402' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12817", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312817' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4895", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14895' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4294", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24294' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4307", event); return false;' |
- title='Win7 Tests (3) failed browser_tests' class='DevStatusBox failure TagWin7Tests34307' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17780", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17780' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23386", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23386' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26301", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426301' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23586", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24937", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724937' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24371", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824371' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17642", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17642' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27230", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27230' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19603", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119603' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14551", event); return false;' |
- title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running TagXPTestsdbg214551' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14471", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414471' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9109", event); return false;' |
- title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running TagXPTestsdbg69109' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4962", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14962' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3587", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23587' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3845", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33845' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3870", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43870' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3862", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53862' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3890", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63890' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21448", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox warnings TagInteractiveTestsdbg21448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7997", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7997' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33134", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33134' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16785", event); return false;' |
- title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBox failure TagMac105Tests116785' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13822", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213822' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10229", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310229' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18424", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118424' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14328", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214328' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11466", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311466' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15139", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15139' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17636", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17636' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16569", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116569' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16183", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316183' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218493' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48492' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38947", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438947' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19236", event); return false;' |
- title='Linux Tests x64 failed browser_tests' class='DevStatusBox failure TagLinuxTestsx6419236' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20262", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20262' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23430", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23430' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18448", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20274", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20274' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5716", event); return false;' |
- title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox running TagLinuxTestsdbgshared5716' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22072", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22072' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2891", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2891' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Lazy background pages now load in response to message passing.<br/><br/>I refactored the pending event stuff so that it handles generic tasks. The<br/>first enqueued task for an extension will start its lazy background page, and<br/>tasks are run once the page finishes loading. Events and messages now share<br/>this mechanism so that either one can activate the page.<br/><br/>BUG=81752<br/>TEST=no<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9704031 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails '> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Win7 Tests (3): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- <li>Mac10.5 Tests (1): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> |
- <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127215" target="_blank">127215</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- mihaip<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9952", event); return false;' |
- title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12581", event); return false;' |
- title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21367", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25047", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425047' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25922", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25922' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13553", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113553' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13222", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213222' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10080", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310080' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17519", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117519' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16402", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216402' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12817", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312817' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4895", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14895' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4294", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24294' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4307", event); return false;' |
- title='Win7 Tests (3) failed browser_tests' class='DevStatusBox failure TagWin7Tests34307' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17780", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17780' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23386", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23386' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26301", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426301' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23586", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24937", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724937' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24371", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824371' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17642", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17642' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27230", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27230' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19603", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119603' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14551", event); return false;' |
- title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running TagXPTestsdbg214551' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14471", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414471' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9109", event); return false;' |
- title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running TagXPTestsdbg69109' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4962", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14962' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3587", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23587' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3845", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33845' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3870", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43870' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3862", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53862' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3890", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63890' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21448", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox warnings TagInteractiveTestsdbg21448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7997", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7997' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33134", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33134' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16785", event); return false;' |
- title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBox failure TagMac105Tests116785' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13822", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213822' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10229", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310229' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18424", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118424' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14328", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214328' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11466", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311466' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15139", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15139' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17636", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17636' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16569", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116569' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16183", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316183' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218493' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48492' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38947", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438947' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19236", event); return false;' |
- title='Linux Tests x64 failed browser_tests' class='DevStatusBox failure TagLinuxTestsx6419236' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20262", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20262' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23430", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23430' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18448", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20274", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20274' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5716", event); return false;' |
- title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox running TagLinuxTestsdbgshared5716' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22072", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22072' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2891", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2891' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Make ShellWindow subclass BaseWindow, to support the chrome.windows.* extension APIs<br/><br/>Platform-specific implementations of BaseWindow methods generally mirror those<br/>in BrowserWindowGtk/BrowserWindowCocoa/BrowserView. BrowserView::FlashFrame is<br/>moved to (Native)Widget, so that it can be used for both browser windows and<br/>shell windows.<br/><br/>Review URL: http://codereview.chromium.org/9706005 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails Alt'> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Win7 Tests (3): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- <li>Mac10.5 Tests (1): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> |
- <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127214" target="_blank">127214</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- mpcomplete<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9951", event); return false;' |
- title='Win build successful' class='DevStatusBox success TagWin9951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12581", event); return false;' |
- title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21367", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25046", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425046' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25921", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25921' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13553", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113553' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13222", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213222' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10080", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310080' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17518", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117518' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16402", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216402' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12817", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312817' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4894", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14894' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4293", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24293' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4307", event); return false;' |
- title='Win7 Tests (3) failed browser_tests' class='DevStatusBox failure TagWin7Tests34307' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17779", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17779' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23385", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23385' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26300", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426300' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23585", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623585' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24936", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724936' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24370", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824370' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17641", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17641' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27229", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27229' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19603", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119603' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14551", event); return false;' |
- title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running TagXPTestsdbg214551' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14471", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414471' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9109", event); return false;' |
- title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running TagXPTestsdbg69109' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4961", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14961' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3586", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3844", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33844' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3870", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43870' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3862", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53862' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3889", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63889' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21448", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox warnings TagInteractiveTestsdbg21448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7996", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7996' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33133", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33133' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16785", event); return false;' |
- title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBox failure TagMac105Tests116785' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13822", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213822' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10229", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310229' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18424", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118424' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14328", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214328' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11466", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311466' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15138", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17636", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17636' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16569", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116569' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16183", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316183' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18493", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218493' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48492' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38946", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438946' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19236", event); return false;' |
- title='Linux Tests x64 failed browser_tests' class='DevStatusBox failure TagLinuxTestsx6419236' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20262", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20262' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23430", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23430' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18448", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20273", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20273' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5716", event); return false;' |
- title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox running TagLinuxTestsdbgshared5716' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22072", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22072' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2890", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2890' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Disable AppApiTest.ReloadAppAfterCrash on Mac and Linux due to flaky timeouts.<br/><br/>TBR=mihaip<br/>BUG=118502<br/>TEST=no<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9705077 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails '> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Win7 Tests (3): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Win7%20Tests%20%283%29/builds/4307/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- <li>Mac10.5 Tests (1): browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/logs/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> |
- <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAction"> UnloadPageAction </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127213" target="_blank">127213</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- stevenjb<span style="display:none">ohnoyoudont</span>@google.com |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9951", event); return false;' |
- title='Win build successful' class='DevStatusBox success TagWin9951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12580", event); return false;' |
- title='Mac build successful' class='DevStatusBox success TagMac12580' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21367", event); return false;' |
- title='Linux build successful' class='DevStatusBox success TagLinux21367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25045", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425045' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25920", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25920' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13552", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113552' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13222", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213222' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10079", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310079' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17518", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117518' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16401", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216401' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12816", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312816' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4894", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14894' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4293", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24293' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4306", event); return false;' |
- title='Win7 Tests (3) build successful' class='DevStatusBox success TagWin7Tests34306' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17779", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17779' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23384", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23384' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26299", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426299' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23584", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623584' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24935", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724935' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24369", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824369' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17641", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17641' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27228", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27228' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19602", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119602' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14550", event); return false;' |
- title='XP Tests (dbg)(2) build successful' class='DevStatusBox success TagXPTestsdbg214550' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14471", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414471' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9108", event); return false;' |
- title='XP Tests (dbg)(6) build successful' class='DevStatusBox success TagXPTestsdbg69108' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4961", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14961' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3586", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3844", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33844' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3870", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43870' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3862", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53862' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3889", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63889' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21447", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox failure TagInteractiveTestsdbg21447' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7995", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7995' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33132", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33132' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16784", event); return false;' |
- title='Mac10.5 Tests (1) build successful' class='DevStatusBox success TagMac105Tests116784' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13822", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213822' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10229", event); return false;' |
- title='Mac10.5 Tests (3) build successful' class='DevStatusBox success TagMac105Tests310229' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18423", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118423' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14328", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214328' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11466", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311466' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15138", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17635", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17635' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16569", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116569' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16182", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316182' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218492' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48492' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38945", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438945' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19235", event); return false;' |
- title='Linux Tests x64 build successful' class='DevStatusBox success TagLinuxTestsx6419235' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20261", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20261' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23430", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23430' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18448", event); return false;' |
- title='Linux Tests (dbg)(2) build successful' class='DevStatusBox success TagLinuxTestsdbg218448' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20272", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20272' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5715", event); return false;' |
- title='Linux Tests (dbg)(shared) build successful' class='DevStatusBox success TagLinuxTestsdbgshared5715' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22071", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22071' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2889", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2889' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- Set app icon for panel apps.<br/><br/>BUG=118505<br/>TEST=See issue<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9702093 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails Alt'> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakiness dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127212" target="_blank">127212</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- rch<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9951", event); return false;' |
- title='Win build successful' class='DevStatusBox success TagWin9951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12580", event); return false;' |
- title='Mac build successful' class='DevStatusBox success TagMac12580' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21366", event); return false;' |
- title='Linux failed compile' class='DevStatusBox failure TagLinux21366' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25044", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425044' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25919", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25919' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13552", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113552' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13221", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213221' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10079", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310079' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17517", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117517' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16401", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216401' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12816", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312816' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4893", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14893' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4293", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24293' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4306", event); return false;' |
- title='Win7 Tests (3) build successful' class='DevStatusBox success TagWin7Tests34306' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17778", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17778' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23383", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23383' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26298", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426298' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23584", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623584' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24934", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724934' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24368", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824368' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17640", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27227", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27227' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19602", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119602' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14550", event); return false;' |
- title='XP Tests (dbg)(2) build successful' class='DevStatusBox success TagXPTestsdbg214550' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14470", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414470' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9108", event); return false;' |
- title='XP Tests (dbg)(6) build successful' class='DevStatusBox success TagXPTestsdbg69108' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4960", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14960' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3586", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3844", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33844' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3869", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43869' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3861", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53861' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3889", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63889' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21447", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox failure TagInteractiveTestsdbg21447' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7994", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7994' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33131", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33131' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16784", event); return false;' |
- title='Mac10.5 Tests (1) build successful' class='DevStatusBox success TagMac105Tests116784' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13821", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213821' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10228", event); return false;' |
- title='Mac10.5 Tests (3) failed browser_tests' class='DevStatusBox failure TagMac105Tests310228' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18423", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118423' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14327", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214327' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11465", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311465' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15138", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15138' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17634", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17634' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16568", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116568' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16182", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316182' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218492' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8491", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48491' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38944", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438944' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19235", event); return false;' |
- title='Linux Tests x64 build successful' class='DevStatusBox success TagLinuxTestsx6419235' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20260", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20260' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23429", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23429' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18447", event); return false;' |
- title='Linux Tests (dbg)(2) failed base_unittests' class='DevStatusBox failure TagLinuxTestsdbg218447' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20271", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20271' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5715", event); return false;' |
- title='Linux Tests (dbg)(shared) build successful' class='DevStatusBox success TagLinuxTestsdbgshared5715' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22070", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22070' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2888", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2888' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Move SpdySession class statics to .cc globals and rename to match convention.<br/><br/><br/>Review URL: http://codereview.chromium.org/9689066 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails '> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Linux: compile failed - <a href="console/../builders/Linux/builds/21366/steps/compile/logs/stdio"> stdio </a></li> |
- <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakiness dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a></li> |
- <li>Mac10.5 Tests (3): browser_tests 2 flaky failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%283%29/builds/10228/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%283%29/builds/10228/steps/browser_tests/logs/KillBGContents"> KillBGContents </a></li> |
- <li>Linux Tests (dbg)(2): base_unittests 4 disabled failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittests/logs/Tasks"> Tasks </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev Alt DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127210" target="_blank">127210</a> |
- </td> |
- <td class='DevName Alt' width="1%"> |
- thakis<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9951", event); return false;' |
- title='Win build successful' class='DevStatusBox success TagWin9951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12580", event); return false;' |
- title='Mac build successful' class='DevStatusBox success TagMac12580' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21366", event); return false;' |
- title='Linux failed compile' class='DevStatusBox failure TagLinux21366' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25044", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425044' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25919", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25919' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13552", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113552' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13221", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213221' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10079", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310079' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17517", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117517' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16401", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216401' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12816", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312816' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4893", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14893' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4293", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24293' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4306", event); return false;' |
- title='Win7 Tests (3) build successful' class='DevStatusBox success TagWin7Tests34306' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17778", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17778' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23383", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23383' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26298", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426298' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23584", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623584' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24934", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724934' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24368", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824368' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17640", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17640' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27227", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27227' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19602", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119602' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14550", event); return false;' |
- title='XP Tests (dbg)(2) build successful' class='DevStatusBox success TagXPTestsdbg214550' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14470", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414470' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9108", event); return false;' |
- title='XP Tests (dbg)(6) build successful' class='DevStatusBox success TagXPTestsdbg69108' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4960", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14960' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3586", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3844", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33844' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3869", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43869' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3861", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53861' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3889", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63889' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21447", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox failure TagInteractiveTestsdbg21447' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7994", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7994' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33130", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33130' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16784", event); return false;' |
- title='Mac10.5 Tests (1) build successful' class='DevStatusBox success TagMac105Tests116784' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13821", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213821' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10228", event); return false;' |
- title='Mac10.5 Tests (3) failed browser_tests' class='DevStatusBox failure TagMac105Tests310228' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18423", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118423' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14327", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214327' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11465", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311465' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15137", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15137' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17634", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17634' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16568", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116568' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16182", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316182' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218492' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8491", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48491' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38943", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438943' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19235", event); return false;' |
- title='Linux Tests x64 build successful' class='DevStatusBox success TagLinuxTestsx6419235' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20260", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20260' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23429", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23429' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18447", event); return false;' |
- title='Linux Tests (dbg)(2) failed base_unittests' class='DevStatusBox failure TagLinuxTestsdbg218447' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20271", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20271' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5715", event); return false;' |
- title='Linux Tests (dbg)(shared) build successful' class='DevStatusBox success TagLinuxTestsdbgshared5715' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22070", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22070' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus Alt DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2887", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2887' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment Alt'> |
- roll rlz 87:94<br/><br/>88: Add a ReadProductEvents() method to RlzValueStore.<br/>89: Change return type of GetProductEventsAsCgiHelper() from DWORD to bool.<br/>90-94: Change SupplementalBranding from wchar_t to char.<br/><br/>BUG=46579<br/>TEST=none<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9704089 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails Alt'> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Linux: compile failed - <a href="console/../builders/Linux/builds/21366/steps/compile/logs/stdio"> stdio </a></li> |
- <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakiness dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a></li> |
- <li>Mac10.5 Tests (3): browser_tests 2 flaky failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%283%29/builds/10228/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%283%29/builds/10228/steps/browser_tests/logs/KillBGContents"> KillBGContents </a></li> |
- <li>Linux Tests (dbg)(2): base_unittests 4 disabled failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittests/logs/Tasks"> Tasks </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
- <tr> |
- <td class='DevRev DevRevCollapse' width="1%"> |
- <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127209" target="_blank">127209</a> |
- </td> |
- <td class='DevName ' width="1%"> |
- erikwright<span style="display:none">ohnoyoudont</span>@chromium.org |
- </td> |
- |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=9951", event); return false;' |
- title='Win build successful' class='DevStatusBox success TagWin9951' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=12580", event); return false;' |
- title='Mac build successful' class='DevStatusBox success TagMac12580' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&number=21366", event); return false;' |
- title='Linux failed compile' class='DevStatusBox failure TagLinux21366' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64&number=25043", event); return false;' |
- title='Linux x64 build successful' class='DevStatusBox success TagLinuxx6425043' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder&number=25918", event); return false;' |
- title='Win Builder build successful' class='DevStatusBox success TagWinBuilder25918' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%281%29&number=13552", event); return false;' |
- title='XP Tests (1) build successful' class='DevStatusBox success TagXPTests113552' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%282%29&number=13221", event); return false;' |
- title='XP Tests (2) build successful' class='DevStatusBox success TagXPTests213221' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%283%29&number=10079", event); return false;' |
- title='XP Tests (3) build successful' class='DevStatusBox success TagXPTests310079' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%281%29&number=17517", event); return false;' |
- title='Vista Tests (1) build successful' class='DevStatusBox success TagVistaTests117517' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%282%29&number=16401", event); return false;' |
- title='Vista Tests (2) build successful' class='DevStatusBox success TagVistaTests216401' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tests%20%283%29&number=12816", event); return false;' |
- title='Vista Tests (3) build successful' class='DevStatusBox success TagVistaTests312816' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%281%29&number=4893", event); return false;' |
- title='Win7 Tests (1) build successful' class='DevStatusBox success TagWin7Tests14893' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%282%29&number=4292", event); return false;' |
- title='Win7 Tests (2) build successful' class='DevStatusBox success TagWin7Tests24292' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%283%29&number=4305", event); return false;' |
- title='Win7 Tests (3) build successful' class='DevStatusBox success TagWin7Tests34305' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync&number=17778", event); return false;' |
- title='Win7 Sync build successful' class='DevStatusBox success TagWin7Sync17778' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests&number=23382", event); return false;' |
- title='NACL Tests build successful' class='DevStatusBox success TagNACLTests23382' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Tests%20%28x64%29&number=26297", event); return false;' |
- title='NACL Tests (x64) build successful' class='DevStatusBox success TagNACLTestsx6426297' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie6%29&number=23583", event); return false;' |
- title='Chrome Frame Tests (ie6) build successful' class='DevStatusBox success TagChromeFrameTestsie623583' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie7%29&number=24933", event); return false;' |
- title='Chrome Frame Tests (ie7) build successful' class='DevStatusBox success TagChromeFrameTestsie724933' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Frame%20Tests%20%28ie8%29&number=24367", event); return false;' |
- title='Chrome Frame Tests (ie8) build successful' class='DevStatusBox success TagChromeFrameTestsie824367' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%202010%20%28dbg%29&number=17639", event); return false;' |
- title='Win Builder 2010 (dbg) build successful' class='DevStatusBox success TagWinBuilder2010dbg17639' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Builder%20%28dbg%29&number=27226", event); return false;' |
- title='Win Builder (dbg) build successful' class='DevStatusBox success TagWinBuilderdbg27226' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%281%29&number=19601", event); return false;' |
- title='XP Tests (dbg)(1) build successful' class='DevStatusBox success TagXPTestsdbg119601' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%282%29&number=14550", event); return false;' |
- title='XP Tests (dbg)(2) build successful' class='DevStatusBox success TagXPTestsdbg214550' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%283%29&number=15770", event); return false;' |
- title='XP Tests (dbg)(3) build successful' class='DevStatusBox success TagXPTestsdbg315770' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%284%29&number=14470", event); return false;' |
- title='XP Tests (dbg)(4) build successful' class='DevStatusBox success TagXPTestsdbg414470' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%285%29&number=12206", event); return false;' |
- title='XP Tests (dbg)(5) build successful' class='DevStatusBox success TagXPTestsdbg512206' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%20%28dbg%29%286%29&number=9108", event); return false;' |
- title='XP Tests (dbg)(6) build successful' class='DevStatusBox success TagXPTestsdbg69108' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%281%29&number=4960", event); return false;' |
- title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox success TagWin7Testsdbg14960' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%282%29&number=3586", event); return false;' |
- title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox success TagWin7Testsdbg23586' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%283%29&number=3843", event); return false;' |
- title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox success TagWin7Testsdbg33843' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%284%29&number=3869", event); return false;' |
- title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox success TagWin7Testsdbg43869' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%285%29&number=3861", event); return false;' |
- title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox success TagWin7Testsdbg53861' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Tests%20%28dbg%29%286%29&number=3888", event); return false;' |
- title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox success TagWin7Testsdbg63888' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive%20Tests%20%28dbg%29&number=21447", event); return false;' |
- title='Interactive Tests (dbg) failed interactive_ui_tests' class='DevStatusBox failure TagInteractiveTestsdbg21447' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&number=7993", event); return false;' |
- title='Win Aura build successful' class='DevStatusBox success TagWinAura7993' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder&number=33130", event); return false;' |
- title='Mac Builder build successful' class='DevStatusBox success TagMacBuilder33130' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%281%29&number=16784", event); return false;' |
- title='Mac10.5 Tests (1) build successful' class='DevStatusBox success TagMac105Tests116784' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%282%29&number=13821", event); return false;' |
- title='Mac10.5 Tests (2) build successful' class='DevStatusBox success TagMac105Tests213821' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20Tests%20%283%29&number=10228", event); return false;' |
- title='Mac10.5 Tests (3) failed browser_tests' class='DevStatusBox failure TagMac105Tests310228' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%281%29&number=18423", event); return false;' |
- title='Mac10.6 Tests (1) build successful' class='DevStatusBox success TagMac106Tests118423' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%282%29&number=14327", event); return false;' |
- title='Mac10.6 Tests (2) build successful' class='DevStatusBox success TagMac106Tests214327' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Tests%20%283%29&number=11465", event); return false;' |
- title='Mac10.6 Tests (3) build successful' class='DevStatusBox success TagMac106Tests311465' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20Sync&number=15137", event); return false;' |
- title='Mac10.6 Sync build successful' class='DevStatusBox success TagMac106Sync15137' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Builder%20%28dbg%29&number=17634", event); return false;' |
- title='Mac Builder (dbg) build successful' class='DevStatusBox success TagMacBuilderdbg17634' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%281%29&number=16568", event); return false;' |
- title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac105Testsdbg116568' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%282%29&number=16287", event); return false;' |
- title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac105Testsdbg216287' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%283%29&number=16182", event); return false;' |
- title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac105Testsdbg316182' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%20Tests%20%28dbg%29%284%29&number=7421", event); return false;' |
- title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac105Testsdbg47421' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%281%29&number=19177", event); return false;' |
- title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatusBox success TagMac106Testsdbg119177' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%282%29&number=18492", event); return false;' |
- title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatusBox success TagMac106Testsdbg218492' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%283%29&number=17462", event); return false;' |
- title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatusBox success TagMac106Testsdbg317462' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%20Tests%20%28dbg%29%284%29&number=8491", event); return false;' |
- title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatusBox success TagMac106Testsdbg48491' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus '> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20x64&number=38942", event); return false;' |
- title='Linux Builder x64 build successful' class='DevStatusBox success TagLinuxBuilderx6438942' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20x64&number=19235", event); return false;' |
- title='Linux Tests x64 build successful' class='DevStatusBox success TagLinuxTestsx6419235' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Sync&number=20260", event); return false;' |
- title='Linux Sync build successful' class='DevStatusBox success TagLinuxSync20260' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29&number=23429", event); return false;' |
- title='Linux Builder (dbg) build successful' class='DevStatusBox success TagLinuxBuilderdbg23429' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%281%29&number=15899", event); return false;' |
- title='Linux Tests (dbg)(1) build successful' class='DevStatusBox success TagLinuxTestsdbg115899' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%282%29&number=18447", event); return false;' |
- title='Linux Tests (dbg)(2) failed base_unittests' class='DevStatusBox failure TagLinuxTestsdbg218447' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Builder%20%28dbg%29%28shared%29&number=20270", event); return false;' |
- title='Linux Builder (dbg)(shared) build successful' class='DevStatusBox success TagLinuxBuilderdbgshared20270' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tests%20%28dbg%29%28shared%29&number=5715", event); return false;' |
- title='Linux Tests (dbg)(shared) build successful' class='DevStatusBox success TagLinuxTestsdbgshared5715' |
- target="_blank"></a> |
- </td> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Clang%20%28dbg%29&number=22070", event); return false;' |
- title='Linux Clang (dbg) build successful' class='DevStatusBox success TagLinuxClangdbg22070' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- <td class='DevStatus DevStatusCollapse'> |
- <table width="100%"> |
- <tr> |
- <td class='DevStatusBox'> |
- <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20Builder&number=2886", event); return false;' |
- title='Android Builder build successful' class='DevStatusBox success TagAndroidBuilder2886' |
- target="_blank"></a> |
- </td> |
- |
- </tr> |
- </table> |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevComment '> |
- Update net/base/cookie_*.h includes to net/cookies/cookie_*.h .<br/><br/>Once complete, forwarding headers will be removed from net/base/ .<br/><br/>TEST=none<br/>R=darin<br/><br/><br/>Review URL: http://codereview.chromium.org/9706056 |
- </td> |
- </tr> |
- |
- <tr> |
- <td colspan="7" class='DevDetails '> |
- <ul style='margin: 0px; padding: 0 0 0 1.5em;'> |
- <li>Linux: compile failed - <a href="console/../builders/Linux/builds/21366/steps/compile/logs/stdio"> stdio </a></li> |
- <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakiness dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactive_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a></li> |
- <li>Mac10.5 Tests (3): browser_tests 2 flaky failed 1 Flakiness dashboard - <a href="console/../builders/Mac10.5%20Tests%20%283%29/builds/10228/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/Mac10.5%20Tests%20%283%29/builds/10228/steps/browser_tests/logs/KillBGContents"> KillBGContents </a></li> |
- <li>Linux Tests (dbg)(2): base_unittests 4 disabled failed 1 Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittests/logs/Tasks"> Tasks </a></li> |
- </ul> |
- </td> |
- </tr> |
- |
- |
- <tr class='DevStatusSpacing'> |
- <td> |
- </td> |
- </tr> |
- |
-</table> |
-</div> |
- |
- |
-<div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.display = 'None'" class="BuildWaterfall"> |
-</div> |
- |
- |
-<iframe id="frameBox" style="display: none;"></iframe> |
- |
-<script type="text/javascript"> |
-// replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload event in xhtml |
-window.addEventListener("load", function() { |
- document.getElementById('frameBox').onload = function(event) { |
- updateDiv(event); |
- }; |
-}, false); |
-</script> |
- |
-</div><div class="footer" style="clear:both"> |
- <hr/> |
- [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a> |
- <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collapse</a> |
- <a class='merge' href="#" OnClick="merge(); return false;">merge</a> |
- <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return false;">un-merge</a> ] |
- <p>Debug info: {'revision_final': 25, 'builds_scanned': 2520, 'source_all': 25, 'source_len': 25, 'last_revision': u'127209', 'from_cache': 666, 'added_blocks': 0, 'load_time': 4.9213621616363525}</p> |
-</div> |
-</body> |
-</html> |