OLD | NEW |
| (Empty) |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
3 <html xmlns="http://www.w3.org/1999/xhtml"> | |
4 <head> | |
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
6 <meta http-equiv="refresh" content="9999999999"/> | |
7 <title>BuildBot: Chromium</title> | |
8 <link rel="stylesheet" href="default.css" type="text/css" /> | |
9 <link rel="alternate" type="application/rss+xml" title="RSS" href="rss"> | |
10 | |
11 <script type='text/javascript'> | |
12 // <![CDATA[ | |
13 // | |
14 | |
15 // | |
16 // Functions used to display the build status bubble on box click. | |
17 // | |
18 | |
19 // show the build status box. This is called when the user clicks on a block. | |
20 function showBuildBox(url, event) { | |
21 // Find the current curson position. | |
22 var cursorPosTop = (window.event ? window.event.clientY : event.pageY) | |
23 var cursorPosLeft = (window.event ? window.event.clientX : event.pageX) | |
24 | |
25 // Offset the position by 5, to make the window appears under the cursor. | |
26 cursorPosTop = cursorPosTop + document.body.scrollTop -5 ; | |
27 cursorPosLeft = cursorPosLeft + document.body.scrollLeft - 5; | |
28 | |
29 // Move the div (hidden) under the cursor. | |
30 var divBox = document.getElementById('divBox'); | |
31 divBox.style.top = parseInt(cursorPosTop) + 'px'; | |
32 divBox.style.left = parseInt(cursorPosLeft) + 'px'; | |
33 | |
34 // Reload the hidden frame with the build page we want to show. | |
35 // The onload even on this frame will update the div and make it visible. | |
36 document.getElementById("frameBox").src = url | |
37 | |
38 // We don't want to reload the page. | |
39 return false; | |
40 } | |
41 | |
42 // OnLoad handler for the iframe containing the build to show. | |
43 function updateDiv(event) { | |
44 // Get the frame innerHTML. | |
45 var iframeContent = document.getElementById("frameBox").contentWindow.docume
nt.body.innerHTML; | |
46 | |
47 // If there is any content, update the div, and make it visible. | |
48 if (iframeContent) { | |
49 var divBox = document.getElementById('divBox'); | |
50 divBox.innerHTML = iframeContent ; | |
51 divBox.style.display = "block"; | |
52 } | |
53 } | |
54 | |
55 // Util functions to know if an element is contained inside another element. | |
56 // We use this to know when we mouse out our build status div. | |
57 function containsDOM (container, containee) { | |
58 var isParent = false; | |
59 do { | |
60 if ((isParent = container == containee)) | |
61 break; | |
62 containee = containee.parentNode; | |
63 } while (containee != null); | |
64 | |
65 return isParent; | |
66 } | |
67 | |
68 // OnMouseOut handler. Returns true if the mouse moved out of the element. | |
69 // It is false if the mouse is still in the element, but in a blank part of it, | |
70 // like in an empty table cell. | |
71 function checkMouseLeave(element, event) { | |
72 if (element.contains && event.toElement) { | |
73 return !element.contains(event.toElement); | |
74 } | |
75 else if (event.relatedTarget) { | |
76 return !containsDOM(element, event.relatedTarget); | |
77 } | |
78 } | |
79 | |
80 // Creates a new cookie. | |
81 function createCookie(name, value, day) { | |
82 var date = new Date(); | |
83 date.setTime(date.getTime() + (day * 24 * 60 * 60 * 1000)); | |
84 var expires = "; expires=" + date.toGMTString(); | |
85 document.cookie = name + "=" + value+expires + "; path=/"; | |
86 } | |
87 | |
88 // Returns the vaue of a cookie, or null if it does not exist. | |
89 function readCookie(name) { | |
90 var begin = name + "="; | |
91 var data = document.cookie.split(';'); | |
92 for(var i = 0; i < data.length; i++) { | |
93 var cookie = data[i]; | |
94 while (cookie.charAt(0) == ' ') | |
95 cookie = cookie.substring(1, cookie.length); | |
96 if (cookie.indexOf(begin) == 0) | |
97 return cookie.substring(begin.length, cookie.length); | |
98 } | |
99 | |
100 return null; | |
101 } | |
102 | |
103 // Deletes a cookie. | |
104 function eraseCookie(name) { | |
105 createCookie(name, "", -1); | |
106 } | |
107 | |
108 // Hides all "details" and "comments" section. | |
109 function collapse() { | |
110 // Hide all Comments sections. | |
111 var comments = document.querySelectorAll('.DevComment'); | |
112 for(var i = 0; i < comments.length; i++) { | |
113 comments[i].style.display = "none"; | |
114 } | |
115 | |
116 // Hide all details sections. | |
117 var details = document.querySelectorAll('.DevDetails'); | |
118 for(var i = 0; i < details.length; i++) { | |
119 details[i].style.display = "none"; | |
120 } | |
121 | |
122 // Fix the rounding on the Revision box. (Lower right corner must be round) | |
123 var revisions = document.querySelectorAll('.DevRev'); | |
124 for(var i = 0; i < revisions.length; i++) { | |
125 revisions[i].className = revisions[i].className + ' DevRevCollapse'; | |
126 } | |
127 | |
128 // Fix the rounding on the last category box. (Lower left corner must be rou
nd) | |
129 var status = document.querySelectorAll('.last'); | |
130 for(var i = 0; i < status.length; i++) { | |
131 status[i].className = status[i].className + ' DevStatusCollapse'; | |
132 } | |
133 | |
134 // Create a cookie to remember that we want the view to be collapsed. | |
135 createCookie('collapsed', 'true', 30) | |
136 | |
137 // Hide the collapse and the unmerge buttons. | |
138 document.querySelectorAll('.collapse')[0].style.display = 'none' | |
139 document.querySelectorAll('.unmerge')[0].style.display = 'none' | |
140 | |
141 // Activate the merge and expand buttons. | |
142 document.querySelectorAll('.uncollapse')[0].style.display = 'inline' | |
143 document.querySelectorAll('.merge')[0].style.display = 'inline' | |
144 } | |
145 | |
146 // Expands the view. This is the opposite of "Collapse" | |
147 function uncollapse() { | |
148 unmerge(); | |
149 | |
150 // Make the comments visible. | |
151 var comments = document.querySelectorAll('.DevComment'); | |
152 for(var i = 0; i < comments.length; i++) { | |
153 comments[i].style.display = ""; | |
154 } | |
155 | |
156 // Make the details visible. | |
157 var details = document.querySelectorAll('.DevDetails'); | |
158 for(var i = 0; i < details.length; i++) { | |
159 details[i].style.display = ""; | |
160 } | |
161 | |
162 // Remove the round corner (lower right) for the Revision box. | |
163 var revisions = document.querySelectorAll('.DevRev'); | |
164 for(var i = 0; i < revisions.length; i++) { | |
165 revisions[i].className = revisions[i].className.replace('DevRevCollapse'
, ''); | |
166 } | |
167 | |
168 // Remoe the round corner (lower left) for the last category box. | |
169 var status = document.querySelectorAll('.DevStatus'); | |
170 for(var i = 0; i < status.length; i++) { | |
171 status[i].className = status[i].className.replace('DevStatusCollapse', '
'); | |
172 } | |
173 | |
174 // Delete the cookies that say that we want to be collapsed or merged. | |
175 eraseCookie('collapsed') | |
176 eraseCookie('merged') | |
177 | |
178 // Display the "collapse" and "merge" buttons. | |
179 document.querySelectorAll('.collapse')[0].style.display = 'inline' | |
180 document.querySelectorAll('.merge')[0].style.display = 'inline' | |
181 | |
182 // Remove the "uncollapse" and "unmerge" buttons. | |
183 document.querySelectorAll('.uncollapse')[0].style.display = 'none' | |
184 document.querySelectorAll('.unmerge')[0].style.display = 'none' | |
185 } | |
186 | |
187 // Merge all the status boxes together. | |
188 function merge() { | |
189 collapse(); | |
190 | |
191 // Hide all the spacing. | |
192 var spacing = document.querySelectorAll('.DevStatusSpacing'); | |
193 for(var i = 0; i < spacing.length; i++) { | |
194 spacing[i].style.display = "none"; | |
195 } | |
196 | |
197 // Each boxes have, in the className, a tag that uniquely represents the | |
198 // build where this data comes from. | |
199 // Since we want to merge all the boxes coming from the same build, we | |
200 // parse the document to find all the builds, and then, for each build, we | |
201 // concatenate the boxes. | |
202 | |
203 var allTags = []; | |
204 all = document.getElementsByTagName('*') | |
205 for(var i = 0; i < all.length; i++) { | |
206 var element = all[i]; | |
207 start = element.className.indexOf('Tag') | |
208 if (start != -1) { | |
209 var className = "" | |
210 end = element.className.indexOf(' ', start) | |
211 if (end != -1) { | |
212 className = element.className.substring(start, end); | |
213 } else { | |
214 className = element.className.substring(start); | |
215 } | |
216 allTags[className] = 1; | |
217 } | |
218 } | |
219 | |
220 // Mergeall tags that we found | |
221 for (i in allTags) { | |
222 var current = document.querySelectorAll('.' + i); | |
223 | |
224 // We do the work only if there is more than 1 box with the same | |
225 // build. | |
226 if (current.length > 1) { | |
227 // Add the noround class to all the boxes. | |
228 for(var i = 0; i < current.length; i++) { | |
229 current[i].className = current[i].className + ' noround'; | |
230 } | |
231 | |
232 // Add the begin class to the first box. | |
233 current[0].className = current[0].className + ' begin'; | |
234 | |
235 // Add the end class to the last box. | |
236 last = current.length - 1; | |
237 current[last].className = current[last].className + ' end'; | |
238 } | |
239 } | |
240 | |
241 // Display the "unmerge" button. | |
242 document.querySelectorAll('.unmerge')[0].style.display = 'inline' | |
243 document.querySelectorAll('.uncollapse')[0].style.display = 'inline' | |
244 | |
245 // Remove the "merge" button. | |
246 document.querySelectorAll('.collapse')[0].style.display = 'none' | |
247 document.querySelectorAll('.merge')[0].style.display = 'none' | |
248 | |
249 // Create a cookie to remember that we want to be merged. | |
250 createCookie('merged', 'true', 30) | |
251 } | |
252 | |
253 // Un-merge the view. This is the opposite of "merge". | |
254 function unmerge() { | |
255 // We put back all the spacing. | |
256 var spacing = document.querySelectorAll('.DevStatusSpacing'); | |
257 for(var i = 0; i < spacing.length; i++) { | |
258 spacing[i].style.display = ""; | |
259 } | |
260 | |
261 // We remove the class added to all the boxes we modified. | |
262 var noround = document.querySelectorAll('.noround'); | |
263 for(var i = 0; i < noround.length; i++) { | |
264 noround[i].className = noround[i].className.replace("begin", ''); | |
265 noround[i].className = noround[i].className.replace("end", ''); | |
266 noround[i].className = noround[i].className.replace("noround", ''); | |
267 } | |
268 | |
269 // Delete the cookie, we don't want to be merged anymore. | |
270 eraseCookie('merged') | |
271 | |
272 // Display the "merge" button. | |
273 document.querySelectorAll('.merge')[0].style.display = 'inline' | |
274 | |
275 // Hide the "unmerge" button. | |
276 document.querySelectorAll('.unmerge')[0].style.display = 'none' | |
277 } | |
278 | |
279 function SetupView() { | |
280 if (readCookie('merged')) { | |
281 merge(); | |
282 } else if (readCookie('collapsed')) { | |
283 collapse(); | |
284 } | |
285 } | |
286 | |
287 document.addEventListener("DOMContentLoaded", SetupView, false); | |
288 | |
289 // ]]> | |
290 </script> | |
291 </head> | |
292 <body class="interface"> | |
293 <div class="header"> | |
294 <a href=".">Home</a> | |
295 - <a href="waterfall">Waterfall</a> | |
296 <a href="grid">Grid</a> | |
297 <a href="tgrid">T-Grid</a> | |
298 <a href="console">Console</a> | |
299 <a href="builders">Builders</a> | |
300 <a href="one_line_per_build">Recent Builds</a> | |
301 <a href="buildslaves">Buildslaves</a> | |
302 <a href="changes">Changesources</a> | |
303 - <a href="json/help">JSON API</a> | |
304 - <a href="about">About</a> | |
305 </div> | |
306 | |
307 <hr/> | |
308 <script> | |
309 /** | |
310 * Pseudo namespace for chromium - keep it short because we are in a very | |
311 * narrow scope for this file. | |
312 * @type {Object} | |
313 */ | |
314 var c = {}; | |
315 | |
316 /** | |
317 * Replaces html references with anchor tags to the same. | |
318 * @param {String} className CSS class to operate on. | |
319 */ | |
320 function autoLink(className) { | |
321 var comments = document.querySelectorAll(className); | |
322 for(var i = 0; i < comments.length; i++) { | |
323 comments[i].innerHTML = comments[i].innerHTML.replace( | |
324 /https?:\/\/[^ \t\n<]*/g, '<a href="$&">$&</a>'); | |
325 } | |
326 }; | |
327 | |
328 window.addEventListener("load", function() { | |
329 autoLink('.DevComment'); | |
330 }, false); | |
331 | |
332 /** | |
333 * This is the indicator for whether we are in console or waterfall | |
334 * mode, or some future resource. | |
335 * @type {String} | |
336 */ | |
337 c.viewtype = location.pathname.split('/').slice(-1); | |
338 | |
339 /** | |
340 * Returns a search string portion including marker, or an empty string. | |
341 * optional. | |
342 * @param {String} opt_s A search string, or some form of emptiness. | |
343 * @returns {!String} | |
344 */ | |
345 function search(opt_s) { | |
346 return opt_s ? '?' + opt_s.replace(/^[?]/, '') : ''; | |
347 }; | |
348 | |
349 /** | |
350 * Replicates a string. | |
351 * @param {Number} i A whole number of repetitions. | |
352 * @param {String} x The string to be repeated. | |
353 * @returns {!String} | |
354 */ | |
355 function repeat(i, x){ | |
356 var t = '' | |
357 for (j = 0; j < i; j++) { t += x; } | |
358 return t; | |
359 }; | |
360 | |
361 /** | |
362 * A simple HTML table string. | |
363 * @param {String} attributes A set of HTML attributes for the table. | |
364 * @param {String} contents The contents. | |
365 * @returns {!String} | |
366 */ | |
367 function table(attributes, contents) { | |
368 return '<table ' + attributes + '>' + contents + '</table>\n'; | |
369 }; | |
370 | |
371 /** | |
372 * A simple HTML div string. | |
373 * @param {String} attributes A set of HTML attributes for the div. | |
374 * @param {String} contents The contents. | |
375 * @returns {!String} | |
376 */ | |
377 function div(attributes, contents) { | |
378 return '<div ' + attributes + '>' + contents + '</div>'; | |
379 }; | |
380 | |
381 /** | |
382 * A simple HTML table row string. | |
383 * @param {String} attributes A set of HTML attributes for the table row. | |
384 * @param {String} contents The contents. | |
385 * @returns {!String} | |
386 */ | |
387 function tr(contents) { | |
388 return '<tr>' + contents + '</tr>\n'; | |
389 }; | |
390 | |
391 /** | |
392 * A simple HTML table cell string. | |
393 * @param {String} attributes A set of HTML attributes for the table cell. | |
394 * @param {String} contents The contents. | |
395 * @returns {!String} | |
396 */ | |
397 function td(attributes, contents) { | |
398 return '<td ' + attributes + '>' + contents + '</td>'; | |
399 }; | |
400 | |
401 /** | |
402 * A simple HTML anchor string. | |
403 * @param {String} url The value for the href. | |
404 * @param {String} attributes A set of HTML attributes for the table. | |
405 * @param {String} contents The contents. | |
406 * @returns {!String} | |
407 */ | |
408 function a(url, contents, attributes) { | |
409 return '<a href="' + url + '" ' + attributes + '>' + contents + '</a>'; | |
410 }; | |
411 | |
412 /** | |
413 * Gives an HTML anchor string to the specified URL, but of the same view | |
414 * type as the current page. | |
415 * @param {String} url The URL portion up to the view. | |
416 * @param {String} search_opt A the query portion. | |
417 * @param {String} contents The contents for the tag. | |
418 * @returns {!String} | |
419 */ | |
420 function aView(url, search_opt, contents) { | |
421 return a((url ? url + '/' : '') + c.viewtype + search(search_opt), | |
422 contents, '') | |
423 }; | |
424 | |
425 /** | |
426 * A simple HTML iframe string. | |
427 * @param {String} attributes A set of HTML attributes for the table. | |
428 * @param {String} url The source of the iframe. | |
429 * @returns {!String} the iframe or an empty string if noframe is specified. | |
430 */ | |
431 function iFrame(attributes, url) { | |
432 if (window.location.href.search('noframe') == -1) { | |
433 return '<iframe ' + attributes + ' src="' + url + '"></iframe>'; | |
434 } | |
435 return '' | |
436 }; | |
437 </script> | |
438 | |
439 <div class="Announcement"> | |
440 | |
441 <iframe width="100%" height="44" frameborder="0" scrolling="no" src="http://chro
mium-status.appspot.com/current"></iframe> | |
442 | |
443 <center style="padding: 0 7px"> | |
444 <table width="100%" valign="top" bgcolor="#efefef" style="-webkit-border-botto
m-left-radius: 24px; -webkit-border-bottom-right-radius: 24px; -moz-border-botto
m-right-radius: 24px; -moz-border-bottom-right-radius: 24px; box-shadow: 2px 2
px 6px rgba(0, 0, 0, 0.6); -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); -web
kit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);"> | |
445 <tr> | |
446 <td width="29%"> | |
447 <table valign="top" width="100%"> | |
448 <tr> | |
449 <td style="text-align: right;"> | |
450 <b>Builds:</b> | |
451 </td> | |
452 <td> | |
453 <a href="http://commondatastorage.googleapis.com/chromium-browser-
continuous/index.html">continuous</a> | | |
454 <a href="http://build.chromium.org/f/chromium/symsrv/index.html">s
ymbols</a> | | |
455 <a href="http://chromium-status.appspot.com">status</a> | |
456 </td> | |
457 </tr> | |
458 <tr> | |
459 <td style="text-align: right;"> | |
460 <b>Dashboards:</b> | |
461 </td> | |
462 <td> | |
463 <a href="http://build.chromium.org/f/chromium/perf/dashboard/overv
iew.html">perf</a> | | |
464 <a href="http://build.chromium.org/f/chromium/perf/dashboard/memor
y.html">memory</a> | | |
465 <a href="http://build.chromium.org/f/chromium/perf/dashboard/sizes
.html">sizes</a> | | |
466 <a href="http://build.chromium.org/f/chromium/coverage/">coverage<
/a> | | |
467 <a href="http://build.chromium.org/f/chromium/flakiness/">flakines
s</a> | | |
468 <a href="http://build.chromium.org/p/chromium/stats">stats</a> | |
469 </td> | |
470 </tr> | |
471 <tr> | |
472 <td style="text-align: right;"> | |
473 <b>Chromium:</b> | |
474 </td> | |
475 <td> | |
476 <a href="http://src.chromium.org/viewvc/chrome">sources</a> | | |
477 <a href="http://codereview.chromium.org/">reviews</a> | | |
478 <a href="http://code.google.com/p/chromium/issues/list?can=2&q=&so
rt=pri+mstone&colspec=ID%20Stars%20Pri%20Area%20Type%20Status%20Summary%20Modifi
ed%20Owner%20Mstone">bugs</a> | | |
479 <a href="http://dev.chromium.org/Home">dev</a> | | |
480 <a href="http://www.google.com/support/chrome/">support</a> | |
481 </td> | |
482 </tr> | |
483 <tr> | |
484 <td style="text-align: right;"> | |
485 <b>Sheriffs:</b> | |
486 </td> | |
487 <td> | |
488 <script src='http://chromium-build.appspot.com/p/chromium/sheriff.
js'></script>,<br> | |
489 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
memory.js'></script>(Memory), | |
490 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
nacl.js'></script>(NaCl),<br> | |
491 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
perf.js'></script>(Perf), | |
492 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
cros_mtv.js'></script>, | |
493 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
cros_nonmtv.js'></script>(CrOS),<br> | |
494 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
android.js'></script>(Android),<br> | |
495 <a href="https://www.google.com/calendar/render?cid=google.com_iqf
ka4i9asiva67vlqqf1es094%40group.calendar.google.com">trooper schedule</a> | |
496 </td> | |
497 </tr> | |
498 <tr> | |
499 <td style="text-align: right;"> | |
500 <b>Gardeners:</b> | |
501 </td> | |
502 <td> | |
503 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
webkit.js'></script>(WebKit), | |
504 <script src='http://chromium-build.appspot.com/p/chromium/sheriff_
cr_cros_gardeners.js'></script> | |
505 (<a href="http://dev.chromium.org/developers/tree-sheriffs/chrome-
in-chromeos-gardening">ChromeOS</a>) | |
506 </td> | |
507 </tr> | |
508 <tr> | |
509 <td style="text-align: right;"> | |
510 <b>Navigate:</b> | |
511 </td> | |
512 <td colspan="2"> | |
513 <script> | |
514 document.write([ | |
515 a("http://dev.chromium.org/developers/testing/chromium-build-inf
rastructure/tour-of-the-chromium-buildbot", "about", ""), | |
516 a("./waterfall/help", "customize", ""), | |
517 a("./waterfall", "waterfall", ""), | |
518 a("./console", "console", ""), | |
519 a("../tryserver.chromium/waterfall", "try", ""), | |
520 aView("../chromium.fyi", "", "experimental"), | |
521 a("./waterfall?show_events=true&failures_only=true", "failures",
""), | |
522 aView("../chromium.memory", "", "memory"), | |
523 aView("../chromium.memory.fyi", "", "memory fyi"), | |
524 aView("../chromium.chromiumos", "", "chromiumos chrome"), | |
525 aView("../chromiumos", "", "chromiumos team"), | |
526 aView("../client.nacl", "", "NaCl")].join(' | ')); | |
527 </script> | |
528 </td> | |
529 </tr> | |
530 </table> | |
531 </td> | |
532 <td width="1" bgcolor="#CCCCCC"> | |
533 </td> | |
534 <td width="1%"> | |
535 </td> | |
536 <td width="70%"> | |
537 <table width="100%"> | |
538 <script language="javascript"> | |
539 c.chromium = ''; | |
540 c.chromium_chromiumos = ''; | |
541 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'; | |
542 c.memory = ''; | |
543 c.memory_fyi = ''; | |
544 c.perf = ''; | |
545 c.cros = ''; | |
546 c.chrome = ''; | |
547 c.lkgr = ''; | |
548 c.pyauto = ''; | |
549 | |
550 c.status = '../chromium'; | |
551 c.status_cros = '../chromium.chromiumos'; | |
552 c.status_webkit = '../chromium.webkit'; | |
553 c.status_memory = '../chromium.memory'; | |
554 c.status_memory_fyi = '../chromium.memory.fyi'; | |
555 c.status_chrome = '../chromium.chrome'; | |
556 c.status_perf = '../chromium.perf'; | |
557 c.status_lkgr = '../chromium.lkgr'; | |
558 c.status_pyauto = '../chromium.pyauto'; | |
559 | |
560 /** | |
561 * Builds a reference for the iframe with boxes. | |
562 * @param {String} x the name of the waterfall. | |
563 * @returns {String} The URL. | |
564 */ | |
565 function BarUrl(x) { | |
566 return 'http://chromium-build.appspot.com/p/' + x + | |
567 '/horizontal_one_box_per_builder'; | |
568 } | |
569 c.bar = BarUrl('chromium') | |
570 c.bar_webkit = 'http://build.chromium.org/p/chromium.webkit/horizont
al_one_box_per_builder'; | |
571 c.bar_memory = BarUrl('chromium.memory'); | |
572 c.bar_memory_fyi = BarUrl('chromium.memory.fyi'); | |
573 c.bar_perf = BarUrl('chromium.perf'); | |
574 c.bar_chrome = BarUrl('chromium.chrome'); | |
575 c.bar_lkgr = BarUrl('chromium.lkgr'); | |
576 c.bar_pyauto = BarUrl('chromium.pyauto'); | |
577 c.bar_cros = BarUrl('chromium.chromiumos'); | |
578 | |
579 | |
580 /** | |
581 * Joins URL and search terms. | |
582 * @param {String} type The Url without the cgi search portion. | |
583 * @param {String} content The parameters for the sub-selection | |
584 * inside the master. Optional. | |
585 * @returns {String} A completed URL. | |
586 */ | |
587 function GetUrl(type, content) { | |
588 return type + search(content); | |
589 } | |
590 | |
591 /** | |
592 * Callback to replace the LKGR link with one that identifies | |
593 * the current revision for the LKGR. | |
594 */ | |
595 function DisplayLKGR() { | |
596 var xmlHttp = new XMLHttpRequest(); | |
597 /* | |
598 * Uncomment when this app allows loading the JSON remotely. | |
599 * var lkgrPath = 'http://chromium-build-master.appspot.com/p/chro
mium.lkgr/' + | |
600 * 'json/builders/Linux%20x64/builds/-1/as_text=1.j
son'; | |
601 */ | |
602 var lkgrPath = c.status_lkgr + | |
603 '/json/builders/Linux%20x64/builds/-1?as_text=1'; | |
604 var lkgrLink = document.getElementById('LKGRLink'); | |
605 xmlHttp.open('GET', lkgrPath, false); | |
606 xmlHttp.send(null); | |
607 if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { | |
608 var buildData; | |
609 if (typeof (JSON) !== 'undefined' && | |
610 typeof (JSON.parse) === 'function') { | |
611 buildData = JSON.parse(xmlHttp.responseText); | |
612 } else { | |
613 buildData = eval('(' + xmlHttp.responseText + ')'); | |
614 } | |
615 var properties = buildData['properties']; | |
616 for (var i = 0; i < properties.length; i++) { | |
617 if (properties[i][0] == 'got_revision') { | |
618 lkgrLink.innerHTML = 'LKGR<br>(' + properties[i][1] + ')'; | |
619 return; | |
620 } | |
621 } | |
622 } | |
623 } | |
624 | |
625 c.default_iframe_properties = [ | |
626 'width="100%"', | |
627 'height="20"', | |
628 'frameborder="0"', | |
629 'scrolling="no"', | |
630 ].join(' '); | |
631 | |
632 /** | |
633 * The most detailed specification of a builder bar with boxes. | |
634 * Reutrns an HTMLstring with 2 <td>s | |
635 * @param {String} status_url URL portion for the title link. | |
636 * @param {String} bar_url URL portion for the array of boxes. | |
637 * @param {String} content specification for the references, e.g.. | |
638 * @param {String} name what to call this bar. | |
639 * @param {String} bar_properties extra attributes for the array | |
640 * of boxes portion. | |
641 * @param {String} link_properties extra attributes for the name | |
642 * portion that is a link. | |
643 * @returns {String} | |
644 */ | |
645 function HTMLBaseBar(status_url, bar_url, content, name, | |
646 bar_properties, link_properties) { | |
647 return td('', | |
648 a(GetUrl(status_url, content), name, | |
649 link_properties)) + | |
650 td(bar_properties, | |
651 iFrame(c.default_iframe_properties, | |
652 GetUrl(bar_url, content))); | |
653 } | |
654 | |
655 /** | |
656 * The more common specification of a builder bar with boxes. | |
657 * Presume to take an entire row. | |
658 * @param {String} status_url URL portion for the title link. | |
659 * @param {String} bar_url URL portion for the array of boxes. | |
660 * @param {String} content specification for the references, e.g.. | |
661 * @param {String} name what to call this bar. | |
662 * @returns {String} | |
663 */ | |
664 function HTMLBar(status_url, bar_url, content, name) { | |
665 return tr(HTMLBaseBar(status_url, bar_url, content, name, | |
666 'width="99%" colspan=9', '')); | |
667 } | |
668 | |
669 /** | |
670 * A specification of a builder bar with boxes, which is one of | |
671 * multiple in a row. | |
672 * Note that since these are elements of a table, percents | |
673 * can be irrelevant to the final layout. | |
674 * @param {String} status_url URL portion for the title link. | |
675 * @param {String} bar_url URL portion for the array of boxes. | |
676 * @param {String} content specification for the references, e.g.. | |
677 * @param {String} name what to call this bar. | |
678 * @param {String} pc percent of the line to allocat to the boxes. | |
679 * @returns {String} | |
680 */ | |
681 function HTMLSubBar(status_url, bar_url, content, name, pc) { | |
682 return HTMLBaseBar(status_url, bar_url, content, name, | |
683 'width="' + pc + '"', ''); | |
684 } | |
685 | |
686 document.write(tr(td( | |
687 'colspan=10 width="99%"', | |
688 div( | |
689 'class="closerbox" width="100%"', | |
690 div('class="title" width="100%" height="10px"', | |
691 a('http://chromium-status.appspot.com', 'Tree closers')) + | |
692 table( | |
693 'width="100%"', | |
694 HTMLBar(c.status, c.bar, c.chromium, 'Chromium') + | |
695 tr(HTMLSubBar(c.status_cros, c.bar_cros, c.cros, | |
696 'ChromiumOS', '30%') + | |
697 HTMLSubBar(c.status_chrome, c.bar_chrome, c.chrome, | |
698 'Official', '35%') + | |
699 HTMLSubBar(c.status_memory, c.bar_memory, c.memory, | |
700 'Memory', '25%'))))))); | |
701 | |
702 document.write(tr( | |
703 HTMLBaseBar(c.status_webkit, c.bar_webkit, c.webkit, | |
704 'Webkit', 'colspan=3', '') + | |
705 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, | |
706 'Perf', 'colspan=5', ''))); | |
707 | |
708 document.write(tr( | |
709 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, | |
710 'LKGR', 'width="10%"', 'id="LKGRLink"') + | |
711 HTMLBaseBar(c.status_pyauto, c.bar_pyauto, c.pyauto, | |
712 'PyAuto', 'width="15%"', '') + | |
713 HTMLBaseBar(c.status_memory_fyi, c.bar_memory_fyi, c.memory_fyi, | |
714 'Memory<br>FYI', 'width="50%" colspan=5', ''))); | |
715 | |
716 setTimeout('DisplayLKGR()', 100); | |
717 </script> | |
718 </table> | |
719 </td> | |
720 </tr> | |
721 </table> | |
722 </center> | |
723 | |
724 </div> | |
725 <hr/> | |
726 | |
727 <div class="content"> | |
728 <div align="center"> | |
729 <table width="95%" class="Grid" border="0" cellspacing="0"> | |
730 <tr> | |
731 <td width="33%" align="left" class="left_align"> | |
732 </td> | |
733 <td width="33%" align="center" class="center_align"> | |
734 <div align="center"> | |
735 <table class="info"> | |
736 <tr> | |
737 <td>Legend: </td> | |
738 <td class='legend success' title='All tests passed'>Passed</td> | |
739 <td class='legend failure' title='There is a new failure. Take a l
ook!'>Failed</td> | |
740 <td class='legend warnings' title='It was failing before, and it i
s still failing. Make sure you did not introduce new regressions'>Failed Ag
ain</td> | |
741 <td class='legend running' title='The tests are still running'>Run
ning</td> | |
742 <td class='legend exception' title='Something went wrong with the
test, there is no result'>Exception</td> | |
743 <td class='legend offline' title='The builder is offline, as there
are no slaves connected to it'>Offline</td> | |
744 <td class='legend notstarted' title='No result yet.'>No data<
/td> | |
745 </tr> | |
746 </table> | |
747 </div> | |
748 </td> | |
749 <td width="33%" align="right" class="right_align"> | |
750 <script type="text/javascript"> | |
751 // <![CDATA[ | |
752 function reload_page() { | |
753 name_value = document.getElementById('namebox').value | |
754 if (document.location.href.lastIndexOf('?') == -1) | |
755 document.location.href = document.location.href+ '?name=' + name_v
alue; | |
756 else | |
757 document.location.href = document.location.href+ '&name=' + name_v
alue; | |
758 } | |
759 // ]]> | |
760 </script> | |
761 <input id='namebox' name='name' type='text' style='color:#999;' | |
762 onblur='this.value = this.value || this.defaultValue; this.style.col
or = "#999";' | |
763 onfocus='this.value=""; this.style.color = "#000";' | |
764 value='Personalized for...'/> | |
765 <input type='submit' value='Go' onclick='reload_page()'/> | |
766 </td> | |
767 </tr> | |
768 </table> | |
769 </div> | |
770 | |
771 <br/> | |
772 | |
773 | |
774 <div align="center"> | |
775 <table width="96%" class="ConsoleData"> | |
776 | |
777 <tr> | |
778 <td width="1%"> | |
779 </td> | |
780 <td width="1%"> | |
781 </td> | |
782 <td class='DevStatus Alt first ' width='6%'> | |
783 clobber | |
784 </td> | |
785 <td class='DevStatus Alt ' width='50%'> | |
786 windows | |
787 </td> | |
788 <td class='DevStatus Alt ' width='26%'> | |
789 mac | |
790 </td> | |
791 <td class='DevStatus Alt ' width='14%'> | |
792 linux | |
793 </td> | |
794 <td class='DevStatus Alt last' width='1%'> | |
795 android | |
796 </td> | |
797 </tr> | |
798 <tr class='DevStatusSpacing'> | |
799 </tr> | |
800 | |
801 <tr> | |
802 <td width="1%"> | |
803 </td> | |
804 <td width="1%"> | |
805 </td> | |
806 <td class='DevSlave Alt '> | |
807 <table width="100%"> | |
808 <tr> | |
809 | |
810 <td class='DevSlaveBox'> | |
811 <a href='./builders/Win' title='Win' class='DevSlaveBox success' tar
get="_blank"> | |
812 </a> | |
813 </td> | |
814 | |
815 <td class='DevSlaveBox'> | |
816 <a href='./builders/Mac' title='Mac' class='DevSlaveBox success' tar
get="_blank"> | |
817 </a> | |
818 </td> | |
819 | |
820 <td class='DevSlaveBox'> | |
821 <a href='./builders/Linux' title='Linux' class='DevSlaveBox success'
target="_blank"> | |
822 </a> | |
823 </td> | |
824 | |
825 <td class='DevSlaveBox'> | |
826 <a href='./builders/Linux%20x64' title='Linux x64' class='DevSlaveBo
x success' target="_blank"> | |
827 </a> | |
828 </td> | |
829 | |
830 </tr> | |
831 </table> | |
832 </td> | |
833 <td class='DevSlave Alt '> | |
834 <table width="100%"> | |
835 <tr> | |
836 | |
837 <td class='DevSlaveBox'> | |
838 <a href='./builders/Win%20Builder' title='Win Builder' class='DevSla
veBox success' target="_blank"> | |
839 </a> | |
840 </td> | |
841 | |
842 <td class='DevSlaveBox'> | |
843 <a href='./builders/XP%20Tests%20%281%29' title='XP Tests (1)' class
='DevSlaveBox success' target="_blank"> | |
844 </a> | |
845 </td> | |
846 | |
847 <td class='DevSlaveBox'> | |
848 <a href='./builders/XP%20Tests%20%282%29' title='XP Tests (2)' class
='DevSlaveBox success' target="_blank"> | |
849 </a> | |
850 </td> | |
851 | |
852 <td class='DevSlaveBox'> | |
853 <a href='./builders/XP%20Tests%20%283%29' title='XP Tests (3)' class
='DevSlaveBox failure' target="_blank"> | |
854 </a> | |
855 </td> | |
856 | |
857 <td class='DevSlaveBox'> | |
858 <a href='./builders/Vista%20Tests%20%281%29' title='Vista Tests (1)'
class='DevSlaveBox success' target="_blank"> | |
859 </a> | |
860 </td> | |
861 | |
862 <td class='DevSlaveBox'> | |
863 <a href='./builders/Vista%20Tests%20%282%29' title='Vista Tests (2)'
class='DevSlaveBox success' target="_blank"> | |
864 </a> | |
865 </td> | |
866 | |
867 <td class='DevSlaveBox'> | |
868 <a href='./builders/Vista%20Tests%20%283%29' title='Vista Tests (3)'
class='DevSlaveBox failure' target="_blank"> | |
869 </a> | |
870 </td> | |
871 | |
872 <td class='DevSlaveBox'> | |
873 <a href='./builders/Win7%20Tests%20%281%29' title='Win7 Tests (1)' c
lass='DevSlaveBox success' target="_blank"> | |
874 </a> | |
875 </td> | |
876 | |
877 <td class='DevSlaveBox'> | |
878 <a href='./builders/Win7%20Tests%20%282%29' title='Win7 Tests (2)' c
lass='DevSlaveBox success' target="_blank"> | |
879 </a> | |
880 </td> | |
881 | |
882 <td class='DevSlaveBox'> | |
883 <a href='./builders/Win7%20Tests%20%283%29' title='Win7 Tests (3)' c
lass='DevSlaveBox success' target="_blank"> | |
884 </a> | |
885 </td> | |
886 | |
887 <td class='DevSlaveBox'> | |
888 <a href='./builders/Win7%20Sync' title='Win7 Sync' class='DevSlaveBo
x success' target="_blank"> | |
889 </a> | |
890 </td> | |
891 | |
892 <td class='DevSlaveBox'> | |
893 <a href='./builders/NACL%20Tests' title='NACL Tests' class='DevSlave
Box success' target="_blank"> | |
894 </a> | |
895 </td> | |
896 | |
897 <td class='DevSlaveBox'> | |
898 <a href='./builders/NACL%20Tests%20%28x64%29' title='NACL Tests (x64
)' class='DevSlaveBox success' target="_blank"> | |
899 </a> | |
900 </td> | |
901 | |
902 <td class='DevSlaveBox'> | |
903 <a href='./builders/Chrome%20Frame%20Tests%20%28ie6%29' title='Chrom
e Frame Tests (ie6)' class='DevSlaveBox success' target="_blank"> | |
904 </a> | |
905 </td> | |
906 | |
907 <td class='DevSlaveBox'> | |
908 <a href='./builders/Chrome%20Frame%20Tests%20%28ie7%29' title='Chrom
e Frame Tests (ie7)' class='DevSlaveBox success' target="_blank"> | |
909 </a> | |
910 </td> | |
911 | |
912 <td class='DevSlaveBox'> | |
913 <a href='./builders/Chrome%20Frame%20Tests%20%28ie8%29' title='Chrom
e Frame Tests (ie8)' class='DevSlaveBox success' target="_blank"> | |
914 </a> | |
915 </td> | |
916 | |
917 <td class='DevSlaveBox'> | |
918 <a href='./builders/Win%20Builder%202010%20%28dbg%29' title='Win Bui
lder 2010 (dbg)' class='DevSlaveBox success' target="_blank"> | |
919 </a> | |
920 </td> | |
921 | |
922 <td class='DevSlaveBox'> | |
923 <a href='./builders/Win%20Builder%20%28dbg%29' title='Win Builder (d
bg)' class='DevSlaveBox success' target="_blank"> | |
924 </a> | |
925 </td> | |
926 | |
927 <td class='DevSlaveBox'> | |
928 <a href='./builders/XP%20Tests%20%28dbg%29%281%29' title='XP Tests (
dbg)(1)' class='DevSlaveBox success' target="_blank"> | |
929 </a> | |
930 </td> | |
931 | |
932 <td class='DevSlaveBox'> | |
933 <a href='./builders/XP%20Tests%20%28dbg%29%282%29' title='XP Tests (
dbg)(2)' class='DevSlaveBox success' target="_blank"> | |
934 </a> | |
935 </td> | |
936 | |
937 <td class='DevSlaveBox'> | |
938 <a href='./builders/XP%20Tests%20%28dbg%29%283%29' title='XP Tests (
dbg)(3)' class='DevSlaveBox success' target="_blank"> | |
939 </a> | |
940 </td> | |
941 | |
942 <td class='DevSlaveBox'> | |
943 <a href='./builders/XP%20Tests%20%28dbg%29%284%29' title='XP Tests (
dbg)(4)' class='DevSlaveBox success' target="_blank"> | |
944 </a> | |
945 </td> | |
946 | |
947 <td class='DevSlaveBox'> | |
948 <a href='./builders/XP%20Tests%20%28dbg%29%285%29' title='XP Tests (
dbg)(5)' class='DevSlaveBox success' target="_blank"> | |
949 </a> | |
950 </td> | |
951 | |
952 <td class='DevSlaveBox'> | |
953 <a href='./builders/XP%20Tests%20%28dbg%29%286%29' title='XP Tests (
dbg)(6)' class='DevSlaveBox success' target="_blank"> | |
954 </a> | |
955 </td> | |
956 | |
957 <td class='DevSlaveBox'> | |
958 <a href='./builders/Win7%20Tests%20%28dbg%29%281%29' title='Win7 Tes
ts (dbg)(1)' class='DevSlaveBox offline' target="_blank"> | |
959 </a> | |
960 </td> | |
961 | |
962 <td class='DevSlaveBox'> | |
963 <a href='./builders/Win7%20Tests%20%28dbg%29%282%29' title='Win7 Tes
ts (dbg)(2)' class='DevSlaveBox success' target="_blank"> | |
964 </a> | |
965 </td> | |
966 | |
967 <td class='DevSlaveBox'> | |
968 <a href='./builders/Win7%20Tests%20%28dbg%29%283%29' title='Win7 Tes
ts (dbg)(3)' class='DevSlaveBox success' target="_blank"> | |
969 </a> | |
970 </td> | |
971 | |
972 <td class='DevSlaveBox'> | |
973 <a href='./builders/Win7%20Tests%20%28dbg%29%284%29' title='Win7 Tes
ts (dbg)(4)' class='DevSlaveBox success' target="_blank"> | |
974 </a> | |
975 </td> | |
976 | |
977 <td class='DevSlaveBox'> | |
978 <a href='./builders/Win7%20Tests%20%28dbg%29%285%29' title='Win7 Tes
ts (dbg)(5)' class='DevSlaveBox success' target="_blank"> | |
979 </a> | |
980 </td> | |
981 | |
982 <td class='DevSlaveBox'> | |
983 <a href='./builders/Win7%20Tests%20%28dbg%29%286%29' title='Win7 Tes
ts (dbg)(6)' class='DevSlaveBox success' target="_blank"> | |
984 </a> | |
985 </td> | |
986 | |
987 <td class='DevSlaveBox'> | |
988 <a href='./builders/Interactive%20Tests%20%28dbg%29' title='Interact
ive Tests (dbg)' class='DevSlaveBox failure' target="_blank"> | |
989 </a> | |
990 </td> | |
991 | |
992 <td class='DevSlaveBox'> | |
993 <a href='./builders/Win%20Aura' title='Win Aura' class='DevSlaveBox
success' target="_blank"> | |
994 </a> | |
995 </td> | |
996 | |
997 </tr> | |
998 </table> | |
999 </td> | |
1000 <td class='DevSlave Alt '> | |
1001 <table width="100%"> | |
1002 <tr> | |
1003 | |
1004 <td class='DevSlaveBox'> | |
1005 <a href='./builders/Mac%20Builder' title='Mac Builder' class='DevSla
veBox success' target="_blank"> | |
1006 </a> | |
1007 </td> | |
1008 | |
1009 <td class='DevSlaveBox'> | |
1010 <a href='./builders/Mac10.5%20Tests%20%281%29' title='Mac10.5 Tests
(1)' class='DevSlaveBox failure' target="_blank"> | |
1011 </a> | |
1012 </td> | |
1013 | |
1014 <td class='DevSlaveBox'> | |
1015 <a href='./builders/Mac10.5%20Tests%20%282%29' title='Mac10.5 Tests
(2)' class='DevSlaveBox success' target="_blank"> | |
1016 </a> | |
1017 </td> | |
1018 | |
1019 <td class='DevSlaveBox'> | |
1020 <a href='./builders/Mac10.5%20Tests%20%283%29' title='Mac10.5 Tests
(3)' class='DevSlaveBox success' target="_blank"> | |
1021 </a> | |
1022 </td> | |
1023 | |
1024 <td class='DevSlaveBox'> | |
1025 <a href='./builders/Mac10.6%20Tests%20%281%29' title='Mac10.6 Tests
(1)' class='DevSlaveBox success' target="_blank"> | |
1026 </a> | |
1027 </td> | |
1028 | |
1029 <td class='DevSlaveBox'> | |
1030 <a href='./builders/Mac10.6%20Tests%20%282%29' title='Mac10.6 Tests
(2)' class='DevSlaveBox success' target="_blank"> | |
1031 </a> | |
1032 </td> | |
1033 | |
1034 <td class='DevSlaveBox'> | |
1035 <a href='./builders/Mac10.6%20Tests%20%283%29' title='Mac10.6 Tests
(3)' class='DevSlaveBox success' target="_blank"> | |
1036 </a> | |
1037 </td> | |
1038 | |
1039 <td class='DevSlaveBox'> | |
1040 <a href='./builders/Mac10.6%20Sync' title='Mac10.6 Sync' class='DevS
laveBox success' target="_blank"> | |
1041 </a> | |
1042 </td> | |
1043 | |
1044 <td class='DevSlaveBox'> | |
1045 <a href='./builders/Mac%20Builder%20%28dbg%29' title='Mac Builder (d
bg)' class='DevSlaveBox success' target="_blank"> | |
1046 </a> | |
1047 </td> | |
1048 | |
1049 <td class='DevSlaveBox'> | |
1050 <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%281%29' title='Ma
c 10.5 Tests (dbg)(1)' class='DevSlaveBox success' target="_blank"> | |
1051 </a> | |
1052 </td> | |
1053 | |
1054 <td class='DevSlaveBox'> | |
1055 <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%282%29' title='Ma
c 10.5 Tests (dbg)(2)' class='DevSlaveBox offline' target="_blank"> | |
1056 </a> | |
1057 </td> | |
1058 | |
1059 <td class='DevSlaveBox'> | |
1060 <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%283%29' title='Ma
c 10.5 Tests (dbg)(3)' class='DevSlaveBox success' target="_blank"> | |
1061 </a> | |
1062 </td> | |
1063 | |
1064 <td class='DevSlaveBox'> | |
1065 <a href='./builders/Mac%2010.5%20Tests%20%28dbg%29%284%29' title='Ma
c 10.5 Tests (dbg)(4)' class='DevSlaveBox success' target="_blank"> | |
1066 </a> | |
1067 </td> | |
1068 | |
1069 <td class='DevSlaveBox'> | |
1070 <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%281%29' title='Ma
c 10.6 Tests (dbg)(1)' class='DevSlaveBox success' target="_blank"> | |
1071 </a> | |
1072 </td> | |
1073 | |
1074 <td class='DevSlaveBox'> | |
1075 <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%282%29' title='Ma
c 10.6 Tests (dbg)(2)' class='DevSlaveBox success' target="_blank"> | |
1076 </a> | |
1077 </td> | |
1078 | |
1079 <td class='DevSlaveBox'> | |
1080 <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%283%29' title='Ma
c 10.6 Tests (dbg)(3)' class='DevSlaveBox success' target="_blank"> | |
1081 </a> | |
1082 </td> | |
1083 | |
1084 <td class='DevSlaveBox'> | |
1085 <a href='./builders/Mac%2010.6%20Tests%20%28dbg%29%284%29' title='Ma
c 10.6 Tests (dbg)(4)' class='DevSlaveBox success' target="_blank"> | |
1086 </a> | |
1087 </td> | |
1088 | |
1089 </tr> | |
1090 </table> | |
1091 </td> | |
1092 <td class='DevSlave Alt '> | |
1093 <table width="100%"> | |
1094 <tr> | |
1095 | |
1096 <td class='DevSlaveBox'> | |
1097 <a href='./builders/Linux%20Builder%20x64' title='Linux Builder x64'
class='DevSlaveBox success' target="_blank"> | |
1098 </a> | |
1099 </td> | |
1100 | |
1101 <td class='DevSlaveBox'> | |
1102 <a href='./builders/Linux%20Tests%20x64' title='Linux Tests x64' cla
ss='DevSlaveBox success' target="_blank"> | |
1103 </a> | |
1104 </td> | |
1105 | |
1106 <td class='DevSlaveBox'> | |
1107 <a href='./builders/Linux%20Sync' title='Linux Sync' class='DevSlave
Box success' target="_blank"> | |
1108 </a> | |
1109 </td> | |
1110 | |
1111 <td class='DevSlaveBox'> | |
1112 <a href='./builders/Linux%20Builder%20%28dbg%29' title='Linux Builde
r (dbg)' class='DevSlaveBox success' target="_blank"> | |
1113 </a> | |
1114 </td> | |
1115 | |
1116 <td class='DevSlaveBox'> | |
1117 <a href='./builders/Linux%20Tests%20%28dbg%29%281%29' title='Linux T
ests (dbg)(1)' class='DevSlaveBox success' target="_blank"> | |
1118 </a> | |
1119 </td> | |
1120 | |
1121 <td class='DevSlaveBox'> | |
1122 <a href='./builders/Linux%20Tests%20%28dbg%29%282%29' title='Linux T
ests (dbg)(2)' class='DevSlaveBox success' target="_blank"> | |
1123 </a> | |
1124 </td> | |
1125 | |
1126 <td class='DevSlaveBox'> | |
1127 <a href='./builders/Linux%20Builder%20%28dbg%29%28shared%29' title='
Linux Builder (dbg)(shared)' class='DevSlaveBox success' target="_blank"> | |
1128 </a> | |
1129 </td> | |
1130 | |
1131 <td class='DevSlaveBox'> | |
1132 <a href='./builders/Linux%20Tests%20%28dbg%29%28shared%29' title='Li
nux Tests (dbg)(shared)' class='DevSlaveBox success' target="_blank"> | |
1133 </a> | |
1134 </td> | |
1135 | |
1136 <td class='DevSlaveBox'> | |
1137 <a href='./builders/Linux%20Clang%20%28dbg%29' title='Linux Clang (d
bg)' class='DevSlaveBox success' target="_blank"> | |
1138 </a> | |
1139 </td> | |
1140 | |
1141 </tr> | |
1142 </table> | |
1143 </td> | |
1144 <td class='DevSlave Alt last'> | |
1145 <table width="100%"> | |
1146 <tr> | |
1147 | |
1148 <td class='DevSlaveBox'> | |
1149 <a href='./builders/Android%20Builder' title='Android Builder' class
='DevSlaveBox success' target="_blank"> | |
1150 </a> | |
1151 </td> | |
1152 | |
1153 </tr> | |
1154 </table> | |
1155 </td> | |
1156 </tr> | |
1157 | |
1158 | |
1159 <tr> | |
1160 <td class='DevRev DevRevCollapse' width="1%"> | |
1161 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127236" t
arget="_blank">127236</a> | |
1162 </td> | |
1163 <td class='DevName ' width="1%"> | |
1164 achuith<span style="display:none">ohnoyoudont</span>@chromium.org | |
1165 </td> | |
1166 | |
1167 <td class='DevStatus '> | |
1168 <table width="100%"> | |
1169 <tr> | |
1170 <td class='DevStatusBox'> | |
1171 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1172 title='Win' class='DevStatusBox notstarted ' | |
1173 target="_blank"></a> | |
1174 </td> | |
1175 <td class='DevStatusBox'> | |
1176 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1177 title='Mac' class='DevStatusBox notstarted ' | |
1178 target="_blank"></a> | |
1179 </td> | |
1180 <td class='DevStatusBox'> | |
1181 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1182 title='Linux' class='DevStatusBox notstarted ' | |
1183 target="_blank"></a> | |
1184 </td> | |
1185 <td class='DevStatusBox'> | |
1186 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1187 title='Linux x64' class='DevStatusBox notstarted ' | |
1188 target="_blank"></a> | |
1189 </td> | |
1190 | |
1191 </tr> | |
1192 </table> | |
1193 </td> | |
1194 <td class='DevStatus '> | |
1195 <table width="100%"> | |
1196 <tr> | |
1197 <td class='DevStatusBox'> | |
1198 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1199 title='Win Builder' class='DevStatusBox notstarted ' | |
1200 target="_blank"></a> | |
1201 </td> | |
1202 <td class='DevStatusBox'> | |
1203 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1204 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
1205 target="_blank"></a> | |
1206 </td> | |
1207 <td class='DevStatusBox'> | |
1208 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1209 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
1210 target="_blank"></a> | |
1211 </td> | |
1212 <td class='DevStatusBox'> | |
1213 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1214 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
1215 target="_blank"></a> | |
1216 </td> | |
1217 <td class='DevStatusBox'> | |
1218 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1219 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
1220 target="_blank"></a> | |
1221 </td> | |
1222 <td class='DevStatusBox'> | |
1223 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1224 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
1225 target="_blank"></a> | |
1226 </td> | |
1227 <td class='DevStatusBox'> | |
1228 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1229 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
1230 target="_blank"></a> | |
1231 </td> | |
1232 <td class='DevStatusBox'> | |
1233 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1234 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
1235 target="_blank"></a> | |
1236 </td> | |
1237 <td class='DevStatusBox'> | |
1238 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1239 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
1240 target="_blank"></a> | |
1241 </td> | |
1242 <td class='DevStatusBox'> | |
1243 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1244 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
1245 target="_blank"></a> | |
1246 </td> | |
1247 <td class='DevStatusBox'> | |
1248 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1249 title='Win7 Sync' class='DevStatusBox notstarted ' | |
1250 target="_blank"></a> | |
1251 </td> | |
1252 <td class='DevStatusBox'> | |
1253 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1254 title='NACL Tests' class='DevStatusBox notstarted ' | |
1255 target="_blank"></a> | |
1256 </td> | |
1257 <td class='DevStatusBox'> | |
1258 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1259 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
1260 target="_blank"></a> | |
1261 </td> | |
1262 <td class='DevStatusBox'> | |
1263 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1264 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
1265 target="_blank"></a> | |
1266 </td> | |
1267 <td class='DevStatusBox'> | |
1268 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1269 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
1270 target="_blank"></a> | |
1271 </td> | |
1272 <td class='DevStatusBox'> | |
1273 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1274 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
1275 target="_blank"></a> | |
1276 </td> | |
1277 <td class='DevStatusBox'> | |
1278 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1279 title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' | |
1280 target="_blank"></a> | |
1281 </td> | |
1282 <td class='DevStatusBox'> | |
1283 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1284 title='Win Builder (dbg)' class='DevStatusBox notstarted ' | |
1285 target="_blank"></a> | |
1286 </td> | |
1287 <td class='DevStatusBox'> | |
1288 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1289 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1290 target="_blank"></a> | |
1291 </td> | |
1292 <td class='DevStatusBox'> | |
1293 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1294 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1295 target="_blank"></a> | |
1296 </td> | |
1297 <td class='DevStatusBox'> | |
1298 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1299 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1300 target="_blank"></a> | |
1301 </td> | |
1302 <td class='DevStatusBox'> | |
1303 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1304 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1305 target="_blank"></a> | |
1306 </td> | |
1307 <td class='DevStatusBox'> | |
1308 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1309 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
1310 target="_blank"></a> | |
1311 </td> | |
1312 <td class='DevStatusBox'> | |
1313 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1314 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
1315 target="_blank"></a> | |
1316 </td> | |
1317 <td class='DevStatusBox'> | |
1318 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1319 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1320 target="_blank"></a> | |
1321 </td> | |
1322 <td class='DevStatusBox'> | |
1323 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1324 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1325 target="_blank"></a> | |
1326 </td> | |
1327 <td class='DevStatusBox'> | |
1328 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1329 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1330 target="_blank"></a> | |
1331 </td> | |
1332 <td class='DevStatusBox'> | |
1333 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1334 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1335 target="_blank"></a> | |
1336 </td> | |
1337 <td class='DevStatusBox'> | |
1338 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1339 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
1340 target="_blank"></a> | |
1341 </td> | |
1342 <td class='DevStatusBox'> | |
1343 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1344 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
1345 target="_blank"></a> | |
1346 </td> | |
1347 <td class='DevStatusBox'> | |
1348 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1349 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
1350 target="_blank"></a> | |
1351 </td> | |
1352 <td class='DevStatusBox'> | |
1353 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1354 title='Win Aura' class='DevStatusBox notstarted ' | |
1355 target="_blank"></a> | |
1356 </td> | |
1357 | |
1358 </tr> | |
1359 </table> | |
1360 </td> | |
1361 <td class='DevStatus '> | |
1362 <table width="100%"> | |
1363 <tr> | |
1364 <td class='DevStatusBox'> | |
1365 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1366 title='Mac Builder' class='DevStatusBox notstarted ' | |
1367 target="_blank"></a> | |
1368 </td> | |
1369 <td class='DevStatusBox'> | |
1370 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1371 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
1372 target="_blank"></a> | |
1373 </td> | |
1374 <td class='DevStatusBox'> | |
1375 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1376 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
1377 target="_blank"></a> | |
1378 </td> | |
1379 <td class='DevStatusBox'> | |
1380 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1381 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
1382 target="_blank"></a> | |
1383 </td> | |
1384 <td class='DevStatusBox'> | |
1385 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1386 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
1387 target="_blank"></a> | |
1388 </td> | |
1389 <td class='DevStatusBox'> | |
1390 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1391 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
1392 target="_blank"></a> | |
1393 </td> | |
1394 <td class='DevStatusBox'> | |
1395 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1396 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
1397 target="_blank"></a> | |
1398 </td> | |
1399 <td class='DevStatusBox'> | |
1400 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1401 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
1402 target="_blank"></a> | |
1403 </td> | |
1404 <td class='DevStatusBox'> | |
1405 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1406 title='Mac Builder (dbg)' class='DevStatusBox notstarted ' | |
1407 target="_blank"></a> | |
1408 </td> | |
1409 <td class='DevStatusBox'> | |
1410 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1411 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1412 target="_blank"></a> | |
1413 </td> | |
1414 <td class='DevStatusBox'> | |
1415 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1416 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1417 target="_blank"></a> | |
1418 </td> | |
1419 <td class='DevStatusBox'> | |
1420 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1421 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1422 target="_blank"></a> | |
1423 </td> | |
1424 <td class='DevStatusBox'> | |
1425 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1426 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1427 target="_blank"></a> | |
1428 </td> | |
1429 <td class='DevStatusBox'> | |
1430 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1431 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1432 target="_blank"></a> | |
1433 </td> | |
1434 <td class='DevStatusBox'> | |
1435 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1436 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1437 target="_blank"></a> | |
1438 </td> | |
1439 <td class='DevStatusBox'> | |
1440 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1441 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1442 target="_blank"></a> | |
1443 </td> | |
1444 <td class='DevStatusBox'> | |
1445 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1446 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1447 target="_blank"></a> | |
1448 </td> | |
1449 | |
1450 </tr> | |
1451 </table> | |
1452 </td> | |
1453 <td class='DevStatus '> | |
1454 <table width="100%"> | |
1455 <tr> | |
1456 <td class='DevStatusBox'> | |
1457 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1458 title='Linux Builder x64' class='DevStatusBox notstarted ' | |
1459 target="_blank"></a> | |
1460 </td> | |
1461 <td class='DevStatusBox'> | |
1462 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1463 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
1464 target="_blank"></a> | |
1465 </td> | |
1466 <td class='DevStatusBox'> | |
1467 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1468 title='Linux Sync' class='DevStatusBox notstarted ' | |
1469 target="_blank"></a> | |
1470 </td> | |
1471 <td class='DevStatusBox'> | |
1472 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1473 title='Linux Builder (dbg)' class='DevStatusBox notstarted ' | |
1474 target="_blank"></a> | |
1475 </td> | |
1476 <td class='DevStatusBox'> | |
1477 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1478 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1479 target="_blank"></a> | |
1480 </td> | |
1481 <td class='DevStatusBox'> | |
1482 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1483 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1484 target="_blank"></a> | |
1485 </td> | |
1486 <td class='DevStatusBox'> | |
1487 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1488 title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarte
d ' | |
1489 target="_blank"></a> | |
1490 </td> | |
1491 <td class='DevStatusBox'> | |
1492 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1493 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
1494 target="_blank"></a> | |
1495 </td> | |
1496 <td class='DevStatusBox'> | |
1497 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1498 title='Linux Clang (dbg)' class='DevStatusBox notstarted ' | |
1499 target="_blank"></a> | |
1500 </td> | |
1501 | |
1502 </tr> | |
1503 </table> | |
1504 </td> | |
1505 <td class='DevStatus DevStatusCollapse'> | |
1506 <table width="100%"> | |
1507 <tr> | |
1508 <td class='DevStatusBox'> | |
1509 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1510 title='Android Builder' class='DevStatusBox notstarted ' | |
1511 target="_blank"></a> | |
1512 </td> | |
1513 | |
1514 </tr> | |
1515 </table> | |
1516 </td> | |
1517 </tr> | |
1518 | |
1519 <tr> | |
1520 <td colspan="7" class='DevComment '> | |
1521 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://chromiumcoderev
iew.appspot.com/9705080 | |
1522 </td> | |
1523 </tr> | |
1524 | |
1525 | |
1526 | |
1527 <tr class='DevStatusSpacing'> | |
1528 <td> | |
1529 </td> | |
1530 </tr> | |
1531 | |
1532 <tr> | |
1533 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
1534 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127234" t
arget="_blank">127234</a> | |
1535 </td> | |
1536 <td class='DevName Alt' width="1%"> | |
1537 michaelbai<span style="display:none">ohnoyoudont</span>@chromium.org | |
1538 </td> | |
1539 | |
1540 <td class='DevStatus Alt '> | |
1541 <table width="100%"> | |
1542 <tr> | |
1543 <td class='DevStatusBox'> | |
1544 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1545 title='Win' class='DevStatusBox notstarted ' | |
1546 target="_blank"></a> | |
1547 </td> | |
1548 <td class='DevStatusBox'> | |
1549 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1550 title='Mac' class='DevStatusBox notstarted ' | |
1551 target="_blank"></a> | |
1552 </td> | |
1553 <td class='DevStatusBox'> | |
1554 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1555 title='Linux' class='DevStatusBox notstarted ' | |
1556 target="_blank"></a> | |
1557 </td> | |
1558 <td class='DevStatusBox'> | |
1559 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1560 title='Linux x64' class='DevStatusBox notstarted ' | |
1561 target="_blank"></a> | |
1562 </td> | |
1563 | |
1564 </tr> | |
1565 </table> | |
1566 </td> | |
1567 <td class='DevStatus Alt '> | |
1568 <table width="100%"> | |
1569 <tr> | |
1570 <td class='DevStatusBox'> | |
1571 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1572 title='Win Builder' class='DevStatusBox notstarted ' | |
1573 target="_blank"></a> | |
1574 </td> | |
1575 <td class='DevStatusBox'> | |
1576 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1577 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
1578 target="_blank"></a> | |
1579 </td> | |
1580 <td class='DevStatusBox'> | |
1581 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1582 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
1583 target="_blank"></a> | |
1584 </td> | |
1585 <td class='DevStatusBox'> | |
1586 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1587 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
1588 target="_blank"></a> | |
1589 </td> | |
1590 <td class='DevStatusBox'> | |
1591 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1592 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
1593 target="_blank"></a> | |
1594 </td> | |
1595 <td class='DevStatusBox'> | |
1596 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1597 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
1598 target="_blank"></a> | |
1599 </td> | |
1600 <td class='DevStatusBox'> | |
1601 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1602 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
1603 target="_blank"></a> | |
1604 </td> | |
1605 <td class='DevStatusBox'> | |
1606 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1607 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
1608 target="_blank"></a> | |
1609 </td> | |
1610 <td class='DevStatusBox'> | |
1611 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1612 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
1613 target="_blank"></a> | |
1614 </td> | |
1615 <td class='DevStatusBox'> | |
1616 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1617 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
1618 target="_blank"></a> | |
1619 </td> | |
1620 <td class='DevStatusBox'> | |
1621 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1622 title='Win7 Sync' class='DevStatusBox notstarted ' | |
1623 target="_blank"></a> | |
1624 </td> | |
1625 <td class='DevStatusBox'> | |
1626 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1627 title='NACL Tests' class='DevStatusBox notstarted ' | |
1628 target="_blank"></a> | |
1629 </td> | |
1630 <td class='DevStatusBox'> | |
1631 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1632 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
1633 target="_blank"></a> | |
1634 </td> | |
1635 <td class='DevStatusBox'> | |
1636 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1637 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
1638 target="_blank"></a> | |
1639 </td> | |
1640 <td class='DevStatusBox'> | |
1641 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1642 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
1643 target="_blank"></a> | |
1644 </td> | |
1645 <td class='DevStatusBox'> | |
1646 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1647 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
1648 target="_blank"></a> | |
1649 </td> | |
1650 <td class='DevStatusBox'> | |
1651 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1652 title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' | |
1653 target="_blank"></a> | |
1654 </td> | |
1655 <td class='DevStatusBox'> | |
1656 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1657 title='Win Builder (dbg)' class='DevStatusBox notstarted ' | |
1658 target="_blank"></a> | |
1659 </td> | |
1660 <td class='DevStatusBox'> | |
1661 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1662 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1663 target="_blank"></a> | |
1664 </td> | |
1665 <td class='DevStatusBox'> | |
1666 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1667 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1668 target="_blank"></a> | |
1669 </td> | |
1670 <td class='DevStatusBox'> | |
1671 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1672 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1673 target="_blank"></a> | |
1674 </td> | |
1675 <td class='DevStatusBox'> | |
1676 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1677 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1678 target="_blank"></a> | |
1679 </td> | |
1680 <td class='DevStatusBox'> | |
1681 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1682 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
1683 target="_blank"></a> | |
1684 </td> | |
1685 <td class='DevStatusBox'> | |
1686 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1687 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
1688 target="_blank"></a> | |
1689 </td> | |
1690 <td class='DevStatusBox'> | |
1691 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1692 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1693 target="_blank"></a> | |
1694 </td> | |
1695 <td class='DevStatusBox'> | |
1696 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1697 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1698 target="_blank"></a> | |
1699 </td> | |
1700 <td class='DevStatusBox'> | |
1701 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1702 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1703 target="_blank"></a> | |
1704 </td> | |
1705 <td class='DevStatusBox'> | |
1706 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1707 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1708 target="_blank"></a> | |
1709 </td> | |
1710 <td class='DevStatusBox'> | |
1711 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1712 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
1713 target="_blank"></a> | |
1714 </td> | |
1715 <td class='DevStatusBox'> | |
1716 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1717 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
1718 target="_blank"></a> | |
1719 </td> | |
1720 <td class='DevStatusBox'> | |
1721 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1722 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
1723 target="_blank"></a> | |
1724 </td> | |
1725 <td class='DevStatusBox'> | |
1726 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1727 title='Win Aura' class='DevStatusBox notstarted ' | |
1728 target="_blank"></a> | |
1729 </td> | |
1730 | |
1731 </tr> | |
1732 </table> | |
1733 </td> | |
1734 <td class='DevStatus Alt '> | |
1735 <table width="100%"> | |
1736 <tr> | |
1737 <td class='DevStatusBox'> | |
1738 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1739 title='Mac Builder' class='DevStatusBox notstarted ' | |
1740 target="_blank"></a> | |
1741 </td> | |
1742 <td class='DevStatusBox'> | |
1743 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1744 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
1745 target="_blank"></a> | |
1746 </td> | |
1747 <td class='DevStatusBox'> | |
1748 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1749 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
1750 target="_blank"></a> | |
1751 </td> | |
1752 <td class='DevStatusBox'> | |
1753 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1754 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
1755 target="_blank"></a> | |
1756 </td> | |
1757 <td class='DevStatusBox'> | |
1758 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1759 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
1760 target="_blank"></a> | |
1761 </td> | |
1762 <td class='DevStatusBox'> | |
1763 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1764 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
1765 target="_blank"></a> | |
1766 </td> | |
1767 <td class='DevStatusBox'> | |
1768 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1769 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
1770 target="_blank"></a> | |
1771 </td> | |
1772 <td class='DevStatusBox'> | |
1773 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1774 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
1775 target="_blank"></a> | |
1776 </td> | |
1777 <td class='DevStatusBox'> | |
1778 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1779 title='Mac Builder (dbg)' class='DevStatusBox notstarted ' | |
1780 target="_blank"></a> | |
1781 </td> | |
1782 <td class='DevStatusBox'> | |
1783 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1784 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1785 target="_blank"></a> | |
1786 </td> | |
1787 <td class='DevStatusBox'> | |
1788 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1789 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1790 target="_blank"></a> | |
1791 </td> | |
1792 <td class='DevStatusBox'> | |
1793 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1794 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1795 target="_blank"></a> | |
1796 </td> | |
1797 <td class='DevStatusBox'> | |
1798 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1799 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1800 target="_blank"></a> | |
1801 </td> | |
1802 <td class='DevStatusBox'> | |
1803 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1804 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1805 target="_blank"></a> | |
1806 </td> | |
1807 <td class='DevStatusBox'> | |
1808 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1809 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1810 target="_blank"></a> | |
1811 </td> | |
1812 <td class='DevStatusBox'> | |
1813 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1814 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
1815 target="_blank"></a> | |
1816 </td> | |
1817 <td class='DevStatusBox'> | |
1818 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1819 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
1820 target="_blank"></a> | |
1821 </td> | |
1822 | |
1823 </tr> | |
1824 </table> | |
1825 </td> | |
1826 <td class='DevStatus Alt '> | |
1827 <table width="100%"> | |
1828 <tr> | |
1829 <td class='DevStatusBox'> | |
1830 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1831 title='Linux Builder x64' class='DevStatusBox notstarted ' | |
1832 target="_blank"></a> | |
1833 </td> | |
1834 <td class='DevStatusBox'> | |
1835 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1836 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
1837 target="_blank"></a> | |
1838 </td> | |
1839 <td class='DevStatusBox'> | |
1840 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1841 title='Linux Sync' class='DevStatusBox notstarted ' | |
1842 target="_blank"></a> | |
1843 </td> | |
1844 <td class='DevStatusBox'> | |
1845 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1846 title='Linux Builder (dbg)' class='DevStatusBox notstarted ' | |
1847 target="_blank"></a> | |
1848 </td> | |
1849 <td class='DevStatusBox'> | |
1850 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1851 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
1852 target="_blank"></a> | |
1853 </td> | |
1854 <td class='DevStatusBox'> | |
1855 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1856 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
1857 target="_blank"></a> | |
1858 </td> | |
1859 <td class='DevStatusBox'> | |
1860 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1861 title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarte
d ' | |
1862 target="_blank"></a> | |
1863 </td> | |
1864 <td class='DevStatusBox'> | |
1865 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1866 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
1867 target="_blank"></a> | |
1868 </td> | |
1869 <td class='DevStatusBox'> | |
1870 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1871 title='Linux Clang (dbg)' class='DevStatusBox notstarted ' | |
1872 target="_blank"></a> | |
1873 </td> | |
1874 | |
1875 </tr> | |
1876 </table> | |
1877 </td> | |
1878 <td class='DevStatus Alt DevStatusCollapse'> | |
1879 <table width="100%"> | |
1880 <tr> | |
1881 <td class='DevStatusBox'> | |
1882 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1883 title='Android Builder' class='DevStatusBox notstarted ' | |
1884 target="_blank"></a> | |
1885 </td> | |
1886 | |
1887 </tr> | |
1888 </table> | |
1889 </td> | |
1890 </tr> | |
1891 | |
1892 <tr> | |
1893 <td colspan="7" class='DevComment Alt'> | |
1894 The SQLHandler implementation for urls table.<br/><br/><br/>BUG=<br/>TEST=
<br/><br/><br/>Review URL: http://codereview.chromium.org/9682002 | |
1895 </td> | |
1896 </tr> | |
1897 | |
1898 | |
1899 | |
1900 <tr class='DevStatusSpacing'> | |
1901 <td> | |
1902 </td> | |
1903 </tr> | |
1904 | |
1905 <tr> | |
1906 <td class='DevRev DevRevCollapse' width="1%"> | |
1907 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127233" t
arget="_blank">127233</a> | |
1908 </td> | |
1909 <td class='DevName ' width="1%"> | |
1910 dmikurube<span style="display:none">ohnoyoudont</span>@chromium.org | |
1911 </td> | |
1912 | |
1913 <td class='DevStatus '> | |
1914 <table width="100%"> | |
1915 <tr> | |
1916 <td class='DevStatusBox'> | |
1917 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1918 title='Win' class='DevStatusBox notstarted ' | |
1919 target="_blank"></a> | |
1920 </td> | |
1921 <td class='DevStatusBox'> | |
1922 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1923 title='Mac' class='DevStatusBox notstarted ' | |
1924 target="_blank"></a> | |
1925 </td> | |
1926 <td class='DevStatusBox'> | |
1927 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1928 title='Linux' class='DevStatusBox notstarted ' | |
1929 target="_blank"></a> | |
1930 </td> | |
1931 <td class='DevStatusBox'> | |
1932 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1933 title='Linux x64' class='DevStatusBox notstarted ' | |
1934 target="_blank"></a> | |
1935 </td> | |
1936 | |
1937 </tr> | |
1938 </table> | |
1939 </td> | |
1940 <td class='DevStatus '> | |
1941 <table width="100%"> | |
1942 <tr> | |
1943 <td class='DevStatusBox'> | |
1944 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1945 title='Win Builder' class='DevStatusBox notstarted ' | |
1946 target="_blank"></a> | |
1947 </td> | |
1948 <td class='DevStatusBox'> | |
1949 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1950 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
1951 target="_blank"></a> | |
1952 </td> | |
1953 <td class='DevStatusBox'> | |
1954 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1955 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
1956 target="_blank"></a> | |
1957 </td> | |
1958 <td class='DevStatusBox'> | |
1959 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1960 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
1961 target="_blank"></a> | |
1962 </td> | |
1963 <td class='DevStatusBox'> | |
1964 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1965 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
1966 target="_blank"></a> | |
1967 </td> | |
1968 <td class='DevStatusBox'> | |
1969 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1970 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
1971 target="_blank"></a> | |
1972 </td> | |
1973 <td class='DevStatusBox'> | |
1974 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1975 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
1976 target="_blank"></a> | |
1977 </td> | |
1978 <td class='DevStatusBox'> | |
1979 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1980 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
1981 target="_blank"></a> | |
1982 </td> | |
1983 <td class='DevStatusBox'> | |
1984 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1985 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
1986 target="_blank"></a> | |
1987 </td> | |
1988 <td class='DevStatusBox'> | |
1989 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1990 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
1991 target="_blank"></a> | |
1992 </td> | |
1993 <td class='DevStatusBox'> | |
1994 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
1995 title='Win7 Sync' class='DevStatusBox notstarted ' | |
1996 target="_blank"></a> | |
1997 </td> | |
1998 <td class='DevStatusBox'> | |
1999 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2000 title='NACL Tests' class='DevStatusBox notstarted ' | |
2001 target="_blank"></a> | |
2002 </td> | |
2003 <td class='DevStatusBox'> | |
2004 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2005 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
2006 target="_blank"></a> | |
2007 </td> | |
2008 <td class='DevStatusBox'> | |
2009 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2010 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
2011 target="_blank"></a> | |
2012 </td> | |
2013 <td class='DevStatusBox'> | |
2014 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2015 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
2016 target="_blank"></a> | |
2017 </td> | |
2018 <td class='DevStatusBox'> | |
2019 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2020 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
2021 target="_blank"></a> | |
2022 </td> | |
2023 <td class='DevStatusBox'> | |
2024 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2025 title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' | |
2026 target="_blank"></a> | |
2027 </td> | |
2028 <td class='DevStatusBox'> | |
2029 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2030 title='Win Builder (dbg)' class='DevStatusBox notstarted ' | |
2031 target="_blank"></a> | |
2032 </td> | |
2033 <td class='DevStatusBox'> | |
2034 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2035 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2036 target="_blank"></a> | |
2037 </td> | |
2038 <td class='DevStatusBox'> | |
2039 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2040 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2041 target="_blank"></a> | |
2042 </td> | |
2043 <td class='DevStatusBox'> | |
2044 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2045 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2046 target="_blank"></a> | |
2047 </td> | |
2048 <td class='DevStatusBox'> | |
2049 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2050 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2051 target="_blank"></a> | |
2052 </td> | |
2053 <td class='DevStatusBox'> | |
2054 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2055 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
2056 target="_blank"></a> | |
2057 </td> | |
2058 <td class='DevStatusBox'> | |
2059 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2060 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
2061 target="_blank"></a> | |
2062 </td> | |
2063 <td class='DevStatusBox'> | |
2064 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2065 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2066 target="_blank"></a> | |
2067 </td> | |
2068 <td class='DevStatusBox'> | |
2069 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2070 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2071 target="_blank"></a> | |
2072 </td> | |
2073 <td class='DevStatusBox'> | |
2074 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2075 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2076 target="_blank"></a> | |
2077 </td> | |
2078 <td class='DevStatusBox'> | |
2079 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2080 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2081 target="_blank"></a> | |
2082 </td> | |
2083 <td class='DevStatusBox'> | |
2084 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2085 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
2086 target="_blank"></a> | |
2087 </td> | |
2088 <td class='DevStatusBox'> | |
2089 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2090 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
2091 target="_blank"></a> | |
2092 </td> | |
2093 <td class='DevStatusBox'> | |
2094 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2095 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
2096 target="_blank"></a> | |
2097 </td> | |
2098 <td class='DevStatusBox'> | |
2099 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2100 title='Win Aura' class='DevStatusBox notstarted ' | |
2101 target="_blank"></a> | |
2102 </td> | |
2103 | |
2104 </tr> | |
2105 </table> | |
2106 </td> | |
2107 <td class='DevStatus '> | |
2108 <table width="100%"> | |
2109 <tr> | |
2110 <td class='DevStatusBox'> | |
2111 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2112 title='Mac Builder' class='DevStatusBox notstarted ' | |
2113 target="_blank"></a> | |
2114 </td> | |
2115 <td class='DevStatusBox'> | |
2116 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2117 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
2118 target="_blank"></a> | |
2119 </td> | |
2120 <td class='DevStatusBox'> | |
2121 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2122 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
2123 target="_blank"></a> | |
2124 </td> | |
2125 <td class='DevStatusBox'> | |
2126 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2127 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
2128 target="_blank"></a> | |
2129 </td> | |
2130 <td class='DevStatusBox'> | |
2131 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2132 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
2133 target="_blank"></a> | |
2134 </td> | |
2135 <td class='DevStatusBox'> | |
2136 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2137 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
2138 target="_blank"></a> | |
2139 </td> | |
2140 <td class='DevStatusBox'> | |
2141 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2142 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
2143 target="_blank"></a> | |
2144 </td> | |
2145 <td class='DevStatusBox'> | |
2146 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2147 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
2148 target="_blank"></a> | |
2149 </td> | |
2150 <td class='DevStatusBox'> | |
2151 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2152 title='Mac Builder (dbg)' class='DevStatusBox notstarted ' | |
2153 target="_blank"></a> | |
2154 </td> | |
2155 <td class='DevStatusBox'> | |
2156 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2157 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2158 target="_blank"></a> | |
2159 </td> | |
2160 <td class='DevStatusBox'> | |
2161 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2162 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2163 target="_blank"></a> | |
2164 </td> | |
2165 <td class='DevStatusBox'> | |
2166 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2167 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2168 target="_blank"></a> | |
2169 </td> | |
2170 <td class='DevStatusBox'> | |
2171 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2172 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2173 target="_blank"></a> | |
2174 </td> | |
2175 <td class='DevStatusBox'> | |
2176 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2177 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2178 target="_blank"></a> | |
2179 </td> | |
2180 <td class='DevStatusBox'> | |
2181 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2182 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2183 target="_blank"></a> | |
2184 </td> | |
2185 <td class='DevStatusBox'> | |
2186 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2187 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2188 target="_blank"></a> | |
2189 </td> | |
2190 <td class='DevStatusBox'> | |
2191 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2192 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2193 target="_blank"></a> | |
2194 </td> | |
2195 | |
2196 </tr> | |
2197 </table> | |
2198 </td> | |
2199 <td class='DevStatus '> | |
2200 <table width="100%"> | |
2201 <tr> | |
2202 <td class='DevStatusBox'> | |
2203 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2204 title='Linux Builder x64' class='DevStatusBox notstarted ' | |
2205 target="_blank"></a> | |
2206 </td> | |
2207 <td class='DevStatusBox'> | |
2208 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2209 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
2210 target="_blank"></a> | |
2211 </td> | |
2212 <td class='DevStatusBox'> | |
2213 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2214 title='Linux Sync' class='DevStatusBox notstarted ' | |
2215 target="_blank"></a> | |
2216 </td> | |
2217 <td class='DevStatusBox'> | |
2218 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2219 title='Linux Builder (dbg)' class='DevStatusBox notstarted ' | |
2220 target="_blank"></a> | |
2221 </td> | |
2222 <td class='DevStatusBox'> | |
2223 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2224 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2225 target="_blank"></a> | |
2226 </td> | |
2227 <td class='DevStatusBox'> | |
2228 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2229 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2230 target="_blank"></a> | |
2231 </td> | |
2232 <td class='DevStatusBox'> | |
2233 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2234 title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarte
d ' | |
2235 target="_blank"></a> | |
2236 </td> | |
2237 <td class='DevStatusBox'> | |
2238 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2239 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
2240 target="_blank"></a> | |
2241 </td> | |
2242 <td class='DevStatusBox'> | |
2243 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2244 title='Linux Clang (dbg)' class='DevStatusBox notstarted ' | |
2245 target="_blank"></a> | |
2246 </td> | |
2247 | |
2248 </tr> | |
2249 </table> | |
2250 </td> | |
2251 <td class='DevStatus DevStatusCollapse'> | |
2252 <table width="100%"> | |
2253 <tr> | |
2254 <td class='DevStatusBox'> | |
2255 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2256 title='Android Builder' class='DevStatusBox notstarted ' | |
2257 target="_blank"></a> | |
2258 </td> | |
2259 | |
2260 </tr> | |
2261 </table> | |
2262 </td> | |
2263 </tr> | |
2264 | |
2265 <tr> | |
2266 <td colspan="7" class='DevComment '> | |
2267 Add a PyAuto API to dump heap profiles. (retry of r127070)<br/><br/><br/>B
UG=114301<br/>TEST=none<br/><br/>Review URL: http://codereview.chromium.org/9704
076 | |
2268 </td> | |
2269 </tr> | |
2270 | |
2271 | |
2272 | |
2273 <tr class='DevStatusSpacing'> | |
2274 <td> | |
2275 </td> | |
2276 </tr> | |
2277 | |
2278 <tr> | |
2279 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
2280 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127232" t
arget="_blank">127232</a> | |
2281 </td> | |
2282 <td class='DevName Alt' width="1%"> | |
2283 fischman<span style="display:none">ohnoyoudont</span>@chromium.org | |
2284 </td> | |
2285 | |
2286 <td class='DevStatus Alt '> | |
2287 <table width="100%"> | |
2288 <tr> | |
2289 <td class='DevStatusBox'> | |
2290 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2291 title='Win' class='DevStatusBox notstarted ' | |
2292 target="_blank"></a> | |
2293 </td> | |
2294 <td class='DevStatusBox'> | |
2295 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2296 title='Mac' class='DevStatusBox notstarted ' | |
2297 target="_blank"></a> | |
2298 </td> | |
2299 <td class='DevStatusBox'> | |
2300 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2301 title='Linux' class='DevStatusBox notstarted ' | |
2302 target="_blank"></a> | |
2303 </td> | |
2304 <td class='DevStatusBox'> | |
2305 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2306 title='Linux x64' class='DevStatusBox notstarted ' | |
2307 target="_blank"></a> | |
2308 </td> | |
2309 | |
2310 </tr> | |
2311 </table> | |
2312 </td> | |
2313 <td class='DevStatus Alt '> | |
2314 <table width="100%"> | |
2315 <tr> | |
2316 <td class='DevStatusBox'> | |
2317 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2318 title='Win Builder' class='DevStatusBox notstarted ' | |
2319 target="_blank"></a> | |
2320 </td> | |
2321 <td class='DevStatusBox'> | |
2322 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2323 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
2324 target="_blank"></a> | |
2325 </td> | |
2326 <td class='DevStatusBox'> | |
2327 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2328 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
2329 target="_blank"></a> | |
2330 </td> | |
2331 <td class='DevStatusBox'> | |
2332 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2333 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
2334 target="_blank"></a> | |
2335 </td> | |
2336 <td class='DevStatusBox'> | |
2337 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2338 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
2339 target="_blank"></a> | |
2340 </td> | |
2341 <td class='DevStatusBox'> | |
2342 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2343 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
2344 target="_blank"></a> | |
2345 </td> | |
2346 <td class='DevStatusBox'> | |
2347 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2348 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
2349 target="_blank"></a> | |
2350 </td> | |
2351 <td class='DevStatusBox'> | |
2352 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2353 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
2354 target="_blank"></a> | |
2355 </td> | |
2356 <td class='DevStatusBox'> | |
2357 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2358 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
2359 target="_blank"></a> | |
2360 </td> | |
2361 <td class='DevStatusBox'> | |
2362 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2363 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
2364 target="_blank"></a> | |
2365 </td> | |
2366 <td class='DevStatusBox'> | |
2367 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2368 title='Win7 Sync' class='DevStatusBox notstarted ' | |
2369 target="_blank"></a> | |
2370 </td> | |
2371 <td class='DevStatusBox'> | |
2372 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2373 title='NACL Tests' class='DevStatusBox notstarted ' | |
2374 target="_blank"></a> | |
2375 </td> | |
2376 <td class='DevStatusBox'> | |
2377 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2378 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
2379 target="_blank"></a> | |
2380 </td> | |
2381 <td class='DevStatusBox'> | |
2382 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2383 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
2384 target="_blank"></a> | |
2385 </td> | |
2386 <td class='DevStatusBox'> | |
2387 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2388 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
2389 target="_blank"></a> | |
2390 </td> | |
2391 <td class='DevStatusBox'> | |
2392 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2393 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
2394 target="_blank"></a> | |
2395 </td> | |
2396 <td class='DevStatusBox'> | |
2397 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2398 title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' | |
2399 target="_blank"></a> | |
2400 </td> | |
2401 <td class='DevStatusBox'> | |
2402 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2403 title='Win Builder (dbg)' class='DevStatusBox notstarted ' | |
2404 target="_blank"></a> | |
2405 </td> | |
2406 <td class='DevStatusBox'> | |
2407 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2408 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2409 target="_blank"></a> | |
2410 </td> | |
2411 <td class='DevStatusBox'> | |
2412 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2413 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2414 target="_blank"></a> | |
2415 </td> | |
2416 <td class='DevStatusBox'> | |
2417 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2418 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2419 target="_blank"></a> | |
2420 </td> | |
2421 <td class='DevStatusBox'> | |
2422 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2423 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2424 target="_blank"></a> | |
2425 </td> | |
2426 <td class='DevStatusBox'> | |
2427 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2428 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
2429 target="_blank"></a> | |
2430 </td> | |
2431 <td class='DevStatusBox'> | |
2432 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2433 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
2434 target="_blank"></a> | |
2435 </td> | |
2436 <td class='DevStatusBox'> | |
2437 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2438 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2439 target="_blank"></a> | |
2440 </td> | |
2441 <td class='DevStatusBox'> | |
2442 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2443 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2444 target="_blank"></a> | |
2445 </td> | |
2446 <td class='DevStatusBox'> | |
2447 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2448 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2449 target="_blank"></a> | |
2450 </td> | |
2451 <td class='DevStatusBox'> | |
2452 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2453 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2454 target="_blank"></a> | |
2455 </td> | |
2456 <td class='DevStatusBox'> | |
2457 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2458 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
2459 target="_blank"></a> | |
2460 </td> | |
2461 <td class='DevStatusBox'> | |
2462 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2463 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
2464 target="_blank"></a> | |
2465 </td> | |
2466 <td class='DevStatusBox'> | |
2467 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2468 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
2469 target="_blank"></a> | |
2470 </td> | |
2471 <td class='DevStatusBox'> | |
2472 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2473 title='Win Aura' class='DevStatusBox notstarted ' | |
2474 target="_blank"></a> | |
2475 </td> | |
2476 | |
2477 </tr> | |
2478 </table> | |
2479 </td> | |
2480 <td class='DevStatus Alt '> | |
2481 <table width="100%"> | |
2482 <tr> | |
2483 <td class='DevStatusBox'> | |
2484 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2485 title='Mac Builder' class='DevStatusBox notstarted ' | |
2486 target="_blank"></a> | |
2487 </td> | |
2488 <td class='DevStatusBox'> | |
2489 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2490 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
2491 target="_blank"></a> | |
2492 </td> | |
2493 <td class='DevStatusBox'> | |
2494 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2495 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
2496 target="_blank"></a> | |
2497 </td> | |
2498 <td class='DevStatusBox'> | |
2499 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2500 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
2501 target="_blank"></a> | |
2502 </td> | |
2503 <td class='DevStatusBox'> | |
2504 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2505 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
2506 target="_blank"></a> | |
2507 </td> | |
2508 <td class='DevStatusBox'> | |
2509 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2510 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
2511 target="_blank"></a> | |
2512 </td> | |
2513 <td class='DevStatusBox'> | |
2514 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2515 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
2516 target="_blank"></a> | |
2517 </td> | |
2518 <td class='DevStatusBox'> | |
2519 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2520 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
2521 target="_blank"></a> | |
2522 </td> | |
2523 <td class='DevStatusBox'> | |
2524 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2525 title='Mac Builder (dbg)' class='DevStatusBox notstarted ' | |
2526 target="_blank"></a> | |
2527 </td> | |
2528 <td class='DevStatusBox'> | |
2529 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2530 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2531 target="_blank"></a> | |
2532 </td> | |
2533 <td class='DevStatusBox'> | |
2534 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2535 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2536 target="_blank"></a> | |
2537 </td> | |
2538 <td class='DevStatusBox'> | |
2539 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2540 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2541 target="_blank"></a> | |
2542 </td> | |
2543 <td class='DevStatusBox'> | |
2544 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2545 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2546 target="_blank"></a> | |
2547 </td> | |
2548 <td class='DevStatusBox'> | |
2549 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2550 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2551 target="_blank"></a> | |
2552 </td> | |
2553 <td class='DevStatusBox'> | |
2554 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2555 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2556 target="_blank"></a> | |
2557 </td> | |
2558 <td class='DevStatusBox'> | |
2559 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2560 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2561 target="_blank"></a> | |
2562 </td> | |
2563 <td class='DevStatusBox'> | |
2564 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2565 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2566 target="_blank"></a> | |
2567 </td> | |
2568 | |
2569 </tr> | |
2570 </table> | |
2571 </td> | |
2572 <td class='DevStatus Alt '> | |
2573 <table width="100%"> | |
2574 <tr> | |
2575 <td class='DevStatusBox'> | |
2576 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2577 title='Linux Builder x64' class='DevStatusBox notstarted ' | |
2578 target="_blank"></a> | |
2579 </td> | |
2580 <td class='DevStatusBox'> | |
2581 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2582 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
2583 target="_blank"></a> | |
2584 </td> | |
2585 <td class='DevStatusBox'> | |
2586 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2587 title='Linux Sync' class='DevStatusBox notstarted ' | |
2588 target="_blank"></a> | |
2589 </td> | |
2590 <td class='DevStatusBox'> | |
2591 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2592 title='Linux Builder (dbg)' class='DevStatusBox notstarted ' | |
2593 target="_blank"></a> | |
2594 </td> | |
2595 <td class='DevStatusBox'> | |
2596 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2597 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2598 target="_blank"></a> | |
2599 </td> | |
2600 <td class='DevStatusBox'> | |
2601 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2602 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2603 target="_blank"></a> | |
2604 </td> | |
2605 <td class='DevStatusBox'> | |
2606 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2607 title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarte
d ' | |
2608 target="_blank"></a> | |
2609 </td> | |
2610 <td class='DevStatusBox'> | |
2611 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2612 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
2613 target="_blank"></a> | |
2614 </td> | |
2615 <td class='DevStatusBox'> | |
2616 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2617 title='Linux Clang (dbg)' class='DevStatusBox notstarted ' | |
2618 target="_blank"></a> | |
2619 </td> | |
2620 | |
2621 </tr> | |
2622 </table> | |
2623 </td> | |
2624 <td class='DevStatus Alt DevStatusCollapse'> | |
2625 <table width="100%"> | |
2626 <tr> | |
2627 <td class='DevStatusBox'> | |
2628 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2629 title='Android Builder' class='DevStatusBox notstarted ' | |
2630 target="_blank"></a> | |
2631 </td> | |
2632 | |
2633 </tr> | |
2634 </table> | |
2635 </td> | |
2636 </tr> | |
2637 | |
2638 <tr> | |
2639 <td colspan="7" class='DevComment Alt'> | |
2640 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-replac
e to parse Content-Range. This CL instead introduces a parser that impleme
nts HTTP/1.1 (allowing instance-size to be "*").<br/><br/>BUG=104795<br/
><br/>Review URL: http://codereview.chromium.org/9703073 | |
2641 </td> | |
2642 </tr> | |
2643 | |
2644 | |
2645 | |
2646 <tr class='DevStatusSpacing'> | |
2647 <td> | |
2648 </td> | |
2649 </tr> | |
2650 | |
2651 <tr> | |
2652 <td class='DevRev DevRevCollapse' width="1%"> | |
2653 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127231" t
arget="_blank">127231</a> | |
2654 </td> | |
2655 <td class='DevName ' width="1%"> | |
2656 oshima<span style="display:none">ohnoyoudont</span>@chromium.org | |
2657 </td> | |
2658 | |
2659 <td class='DevStatus '> | |
2660 <table width="100%"> | |
2661 <tr> | |
2662 <td class='DevStatusBox'> | |
2663 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2664 title='Win' class='DevStatusBox notstarted ' | |
2665 target="_blank"></a> | |
2666 </td> | |
2667 <td class='DevStatusBox'> | |
2668 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2669 title='Mac' class='DevStatusBox notstarted ' | |
2670 target="_blank"></a> | |
2671 </td> | |
2672 <td class='DevStatusBox'> | |
2673 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2674 title='Linux' class='DevStatusBox notstarted ' | |
2675 target="_blank"></a> | |
2676 </td> | |
2677 <td class='DevStatusBox'> | |
2678 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2679 title='Linux x64' class='DevStatusBox notstarted ' | |
2680 target="_blank"></a> | |
2681 </td> | |
2682 | |
2683 </tr> | |
2684 </table> | |
2685 </td> | |
2686 <td class='DevStatus '> | |
2687 <table width="100%"> | |
2688 <tr> | |
2689 <td class='DevStatusBox'> | |
2690 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2691 title='Win Builder' class='DevStatusBox notstarted ' | |
2692 target="_blank"></a> | |
2693 </td> | |
2694 <td class='DevStatusBox'> | |
2695 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2696 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
2697 target="_blank"></a> | |
2698 </td> | |
2699 <td class='DevStatusBox'> | |
2700 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2701 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
2702 target="_blank"></a> | |
2703 </td> | |
2704 <td class='DevStatusBox'> | |
2705 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2706 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
2707 target="_blank"></a> | |
2708 </td> | |
2709 <td class='DevStatusBox'> | |
2710 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2711 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
2712 target="_blank"></a> | |
2713 </td> | |
2714 <td class='DevStatusBox'> | |
2715 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2716 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
2717 target="_blank"></a> | |
2718 </td> | |
2719 <td class='DevStatusBox'> | |
2720 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2721 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
2722 target="_blank"></a> | |
2723 </td> | |
2724 <td class='DevStatusBox'> | |
2725 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2726 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
2727 target="_blank"></a> | |
2728 </td> | |
2729 <td class='DevStatusBox'> | |
2730 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2731 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
2732 target="_blank"></a> | |
2733 </td> | |
2734 <td class='DevStatusBox'> | |
2735 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2736 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
2737 target="_blank"></a> | |
2738 </td> | |
2739 <td class='DevStatusBox'> | |
2740 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2741 title='Win7 Sync' class='DevStatusBox notstarted ' | |
2742 target="_blank"></a> | |
2743 </td> | |
2744 <td class='DevStatusBox'> | |
2745 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2746 title='NACL Tests' class='DevStatusBox notstarted ' | |
2747 target="_blank"></a> | |
2748 </td> | |
2749 <td class='DevStatusBox'> | |
2750 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2751 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
2752 target="_blank"></a> | |
2753 </td> | |
2754 <td class='DevStatusBox'> | |
2755 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2756 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
2757 target="_blank"></a> | |
2758 </td> | |
2759 <td class='DevStatusBox'> | |
2760 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2761 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
2762 target="_blank"></a> | |
2763 </td> | |
2764 <td class='DevStatusBox'> | |
2765 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2766 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
2767 target="_blank"></a> | |
2768 </td> | |
2769 <td class='DevStatusBox'> | |
2770 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2771 title='Win Builder 2010 (dbg)' class='DevStatusBox notstarted ' | |
2772 target="_blank"></a> | |
2773 </td> | |
2774 <td class='DevStatusBox'> | |
2775 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2776 title='Win Builder (dbg)' class='DevStatusBox notstarted ' | |
2777 target="_blank"></a> | |
2778 </td> | |
2779 <td class='DevStatusBox'> | |
2780 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2781 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2782 target="_blank"></a> | |
2783 </td> | |
2784 <td class='DevStatusBox'> | |
2785 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2786 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2787 target="_blank"></a> | |
2788 </td> | |
2789 <td class='DevStatusBox'> | |
2790 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2791 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2792 target="_blank"></a> | |
2793 </td> | |
2794 <td class='DevStatusBox'> | |
2795 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2796 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2797 target="_blank"></a> | |
2798 </td> | |
2799 <td class='DevStatusBox'> | |
2800 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2801 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
2802 target="_blank"></a> | |
2803 </td> | |
2804 <td class='DevStatusBox'> | |
2805 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2806 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
2807 target="_blank"></a> | |
2808 </td> | |
2809 <td class='DevStatusBox'> | |
2810 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2811 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2812 target="_blank"></a> | |
2813 </td> | |
2814 <td class='DevStatusBox'> | |
2815 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2816 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2817 target="_blank"></a> | |
2818 </td> | |
2819 <td class='DevStatusBox'> | |
2820 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2821 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2822 target="_blank"></a> | |
2823 </td> | |
2824 <td class='DevStatusBox'> | |
2825 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2826 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2827 target="_blank"></a> | |
2828 </td> | |
2829 <td class='DevStatusBox'> | |
2830 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2831 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
2832 target="_blank"></a> | |
2833 </td> | |
2834 <td class='DevStatusBox'> | |
2835 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2836 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
2837 target="_blank"></a> | |
2838 </td> | |
2839 <td class='DevStatusBox'> | |
2840 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2841 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
2842 target="_blank"></a> | |
2843 </td> | |
2844 <td class='DevStatusBox'> | |
2845 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2846 title='Win Aura' class='DevStatusBox notstarted ' | |
2847 target="_blank"></a> | |
2848 </td> | |
2849 | |
2850 </tr> | |
2851 </table> | |
2852 </td> | |
2853 <td class='DevStatus '> | |
2854 <table width="100%"> | |
2855 <tr> | |
2856 <td class='DevStatusBox'> | |
2857 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2858 title='Mac Builder' class='DevStatusBox notstarted ' | |
2859 target="_blank"></a> | |
2860 </td> | |
2861 <td class='DevStatusBox'> | |
2862 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2863 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
2864 target="_blank"></a> | |
2865 </td> | |
2866 <td class='DevStatusBox'> | |
2867 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2868 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
2869 target="_blank"></a> | |
2870 </td> | |
2871 <td class='DevStatusBox'> | |
2872 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2873 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
2874 target="_blank"></a> | |
2875 </td> | |
2876 <td class='DevStatusBox'> | |
2877 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2878 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
2879 target="_blank"></a> | |
2880 </td> | |
2881 <td class='DevStatusBox'> | |
2882 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2883 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
2884 target="_blank"></a> | |
2885 </td> | |
2886 <td class='DevStatusBox'> | |
2887 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2888 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
2889 target="_blank"></a> | |
2890 </td> | |
2891 <td class='DevStatusBox'> | |
2892 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2893 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
2894 target="_blank"></a> | |
2895 </td> | |
2896 <td class='DevStatusBox'> | |
2897 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2898 title='Mac Builder (dbg)' class='DevStatusBox notstarted ' | |
2899 target="_blank"></a> | |
2900 </td> | |
2901 <td class='DevStatusBox'> | |
2902 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2903 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2904 target="_blank"></a> | |
2905 </td> | |
2906 <td class='DevStatusBox'> | |
2907 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2908 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2909 target="_blank"></a> | |
2910 </td> | |
2911 <td class='DevStatusBox'> | |
2912 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2913 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2914 target="_blank"></a> | |
2915 </td> | |
2916 <td class='DevStatusBox'> | |
2917 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2918 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2919 target="_blank"></a> | |
2920 </td> | |
2921 <td class='DevStatusBox'> | |
2922 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2923 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2924 target="_blank"></a> | |
2925 </td> | |
2926 <td class='DevStatusBox'> | |
2927 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2928 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2929 target="_blank"></a> | |
2930 </td> | |
2931 <td class='DevStatusBox'> | |
2932 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2933 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
2934 target="_blank"></a> | |
2935 </td> | |
2936 <td class='DevStatusBox'> | |
2937 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2938 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
2939 target="_blank"></a> | |
2940 </td> | |
2941 | |
2942 </tr> | |
2943 </table> | |
2944 </td> | |
2945 <td class='DevStatus '> | |
2946 <table width="100%"> | |
2947 <tr> | |
2948 <td class='DevStatusBox'> | |
2949 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2950 title='Linux Builder x64' class='DevStatusBox notstarted ' | |
2951 target="_blank"></a> | |
2952 </td> | |
2953 <td class='DevStatusBox'> | |
2954 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2955 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
2956 target="_blank"></a> | |
2957 </td> | |
2958 <td class='DevStatusBox'> | |
2959 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2960 title='Linux Sync' class='DevStatusBox notstarted ' | |
2961 target="_blank"></a> | |
2962 </td> | |
2963 <td class='DevStatusBox'> | |
2964 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2965 title='Linux Builder (dbg)' class='DevStatusBox notstarted ' | |
2966 target="_blank"></a> | |
2967 </td> | |
2968 <td class='DevStatusBox'> | |
2969 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2970 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
2971 target="_blank"></a> | |
2972 </td> | |
2973 <td class='DevStatusBox'> | |
2974 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2975 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
2976 target="_blank"></a> | |
2977 </td> | |
2978 <td class='DevStatusBox'> | |
2979 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2980 title='Linux Builder (dbg)(shared)' class='DevStatusBox notstarte
d ' | |
2981 target="_blank"></a> | |
2982 </td> | |
2983 <td class='DevStatusBox'> | |
2984 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2985 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
2986 target="_blank"></a> | |
2987 </td> | |
2988 <td class='DevStatusBox'> | |
2989 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
2990 title='Linux Clang (dbg)' class='DevStatusBox notstarted ' | |
2991 target="_blank"></a> | |
2992 </td> | |
2993 | |
2994 </tr> | |
2995 </table> | |
2996 </td> | |
2997 <td class='DevStatus DevStatusCollapse'> | |
2998 <table width="100%"> | |
2999 <tr> | |
3000 <td class='DevStatusBox'> | |
3001 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3002 title='Android Builder' class='DevStatusBox notstarted ' | |
3003 target="_blank"></a> | |
3004 </td> | |
3005 | |
3006 </tr> | |
3007 </table> | |
3008 </td> | |
3009 </tr> | |
3010 | |
3011 <tr> | |
3012 <td colspan="7" class='DevComment '> | |
3013 Native bounds support to host windows.<br/>* Moved SingleMonitorManager in
to separate file. This is a default<br/>MonitorManager and creates RootWindow fo
r 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 wh
en<br/>switching primary monitor.<br/>* Removed monitor_manager_x11, which I com
mitted by accident.<br/>* Use (0,0) for monitor/workarea bounds because the coor
dinate isn't translated yet<br/> for non primary screens.<br/><br/>BUG
=115510<br/>TEST=none<br/><br/>Review URL: https://chromiumcodereview.appspot.co
m/9703083 | |
3014 </td> | |
3015 </tr> | |
3016 | |
3017 | |
3018 | |
3019 <tr class='DevStatusSpacing'> | |
3020 <td> | |
3021 </td> | |
3022 </tr> | |
3023 | |
3024 <tr> | |
3025 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
3026 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127230" t
arget="_blank">127230</a> | |
3027 </td> | |
3028 <td class='DevName Alt' width="1%"> | |
3029 pkasting<span style="display:none">ohnoyoudont</span>@chromium.org | |
3030 </td> | |
3031 | |
3032 <td class='DevStatus Alt '> | |
3033 <table width="100%"> | |
3034 <tr> | |
3035 <td class='DevStatusBox'> | |
3036 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3037 title='Win' class='DevStatusBox notstarted ' | |
3038 target="_blank"></a> | |
3039 </td> | |
3040 <td class='DevStatusBox'> | |
3041 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3042 title='Mac' class='DevStatusBox notstarted ' | |
3043 target="_blank"></a> | |
3044 </td> | |
3045 <td class='DevStatusBox'> | |
3046 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3047 title='Linux' class='DevStatusBox notstarted ' | |
3048 target="_blank"></a> | |
3049 </td> | |
3050 <td class='DevStatusBox'> | |
3051 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
3052 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
3053 target="_blank"></a> | |
3054 </td> | |
3055 | |
3056 </tr> | |
3057 </table> | |
3058 </td> | |
3059 <td class='DevStatus Alt '> | |
3060 <table width="100%"> | |
3061 <tr> | |
3062 <td class='DevStatusBox'> | |
3063 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
3064 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
3065 target="_blank"></a> | |
3066 </td> | |
3067 <td class='DevStatusBox'> | |
3068 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3069 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
3070 target="_blank"></a> | |
3071 </td> | |
3072 <td class='DevStatusBox'> | |
3073 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3074 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
3075 target="_blank"></a> | |
3076 </td> | |
3077 <td class='DevStatusBox'> | |
3078 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3079 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
3080 target="_blank"></a> | |
3081 </td> | |
3082 <td class='DevStatusBox'> | |
3083 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3084 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
3085 target="_blank"></a> | |
3086 </td> | |
3087 <td class='DevStatusBox'> | |
3088 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3089 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
3090 target="_blank"></a> | |
3091 </td> | |
3092 <td class='DevStatusBox'> | |
3093 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3094 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
3095 target="_blank"></a> | |
3096 </td> | |
3097 <td class='DevStatusBox'> | |
3098 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3099 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
3100 target="_blank"></a> | |
3101 </td> | |
3102 <td class='DevStatusBox'> | |
3103 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3104 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
3105 target="_blank"></a> | |
3106 </td> | |
3107 <td class='DevStatusBox'> | |
3108 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3109 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
3110 target="_blank"></a> | |
3111 </td> | |
3112 <td class='DevStatusBox'> | |
3113 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3114 title='Win7 Sync' class='DevStatusBox notstarted ' | |
3115 target="_blank"></a> | |
3116 </td> | |
3117 <td class='DevStatusBox'> | |
3118 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3119 title='NACL Tests' class='DevStatusBox notstarted ' | |
3120 target="_blank"></a> | |
3121 </td> | |
3122 <td class='DevStatusBox'> | |
3123 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3124 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
3125 target="_blank"></a> | |
3126 </td> | |
3127 <td class='DevStatusBox'> | |
3128 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3129 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
3130 target="_blank"></a> | |
3131 </td> | |
3132 <td class='DevStatusBox'> | |
3133 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3134 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
3135 target="_blank"></a> | |
3136 </td> | |
3137 <td class='DevStatusBox'> | |
3138 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3139 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
3140 target="_blank"></a> | |
3141 </td> | |
3142 <td class='DevStatusBox'> | |
3143 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
3144 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
3145 target="_blank"></a> | |
3146 </td> | |
3147 <td class='DevStatusBox'> | |
3148 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
3149 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
3150 target="_blank"></a> | |
3151 </td> | |
3152 <td class='DevStatusBox'> | |
3153 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3154 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3155 target="_blank"></a> | |
3156 </td> | |
3157 <td class='DevStatusBox'> | |
3158 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3159 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3160 target="_blank"></a> | |
3161 </td> | |
3162 <td class='DevStatusBox'> | |
3163 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3164 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3165 target="_blank"></a> | |
3166 </td> | |
3167 <td class='DevStatusBox'> | |
3168 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3169 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3170 target="_blank"></a> | |
3171 </td> | |
3172 <td class='DevStatusBox'> | |
3173 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3174 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
3175 target="_blank"></a> | |
3176 </td> | |
3177 <td class='DevStatusBox'> | |
3178 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3179 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
3180 target="_blank"></a> | |
3181 </td> | |
3182 <td class='DevStatusBox'> | |
3183 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3184 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3185 target="_blank"></a> | |
3186 </td> | |
3187 <td class='DevStatusBox'> | |
3188 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3189 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3190 target="_blank"></a> | |
3191 </td> | |
3192 <td class='DevStatusBox'> | |
3193 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3194 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3195 target="_blank"></a> | |
3196 </td> | |
3197 <td class='DevStatusBox'> | |
3198 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3199 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3200 target="_blank"></a> | |
3201 </td> | |
3202 <td class='DevStatusBox'> | |
3203 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3204 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
3205 target="_blank"></a> | |
3206 </td> | |
3207 <td class='DevStatusBox'> | |
3208 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3209 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
3210 target="_blank"></a> | |
3211 </td> | |
3212 <td class='DevStatusBox'> | |
3213 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3214 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
3215 target="_blank"></a> | |
3216 </td> | |
3217 <td class='DevStatusBox'> | |
3218 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
3219 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
3220 target="_blank"></a> | |
3221 </td> | |
3222 | |
3223 </tr> | |
3224 </table> | |
3225 </td> | |
3226 <td class='DevStatus Alt '> | |
3227 <table width="100%"> | |
3228 <tr> | |
3229 <td class='DevStatusBox'> | |
3230 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
3231 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
3232 target="_blank"></a> | |
3233 </td> | |
3234 <td class='DevStatusBox'> | |
3235 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3236 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
3237 target="_blank"></a> | |
3238 </td> | |
3239 <td class='DevStatusBox'> | |
3240 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3241 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
3242 target="_blank"></a> | |
3243 </td> | |
3244 <td class='DevStatusBox'> | |
3245 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3246 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
3247 target="_blank"></a> | |
3248 </td> | |
3249 <td class='DevStatusBox'> | |
3250 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3251 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
3252 target="_blank"></a> | |
3253 </td> | |
3254 <td class='DevStatusBox'> | |
3255 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3256 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
3257 target="_blank"></a> | |
3258 </td> | |
3259 <td class='DevStatusBox'> | |
3260 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3261 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
3262 target="_blank"></a> | |
3263 </td> | |
3264 <td class='DevStatusBox'> | |
3265 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3266 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
3267 target="_blank"></a> | |
3268 </td> | |
3269 <td class='DevStatusBox'> | |
3270 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
3271 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
3272 target="_blank"></a> | |
3273 </td> | |
3274 <td class='DevStatusBox'> | |
3275 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3276 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3277 target="_blank"></a> | |
3278 </td> | |
3279 <td class='DevStatusBox'> | |
3280 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3281 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3282 target="_blank"></a> | |
3283 </td> | |
3284 <td class='DevStatusBox'> | |
3285 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3286 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3287 target="_blank"></a> | |
3288 </td> | |
3289 <td class='DevStatusBox'> | |
3290 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3291 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3292 target="_blank"></a> | |
3293 </td> | |
3294 <td class='DevStatusBox'> | |
3295 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3296 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3297 target="_blank"></a> | |
3298 </td> | |
3299 <td class='DevStatusBox'> | |
3300 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3301 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3302 target="_blank"></a> | |
3303 </td> | |
3304 <td class='DevStatusBox'> | |
3305 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3306 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3307 target="_blank"></a> | |
3308 </td> | |
3309 <td class='DevStatusBox'> | |
3310 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3311 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3312 target="_blank"></a> | |
3313 </td> | |
3314 | |
3315 </tr> | |
3316 </table> | |
3317 </td> | |
3318 <td class='DevStatus Alt '> | |
3319 <table width="100%"> | |
3320 <tr> | |
3321 <td class='DevStatusBox'> | |
3322 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
3323 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
3324 target="_blank"></a> | |
3325 </td> | |
3326 <td class='DevStatusBox'> | |
3327 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3328 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
3329 target="_blank"></a> | |
3330 </td> | |
3331 <td class='DevStatusBox'> | |
3332 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3333 title='Linux Sync' class='DevStatusBox notstarted ' | |
3334 target="_blank"></a> | |
3335 </td> | |
3336 <td class='DevStatusBox'> | |
3337 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
3338 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
3339 target="_blank"></a> | |
3340 </td> | |
3341 <td class='DevStatusBox'> | |
3342 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3343 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3344 target="_blank"></a> | |
3345 </td> | |
3346 <td class='DevStatusBox'> | |
3347 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3348 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3349 target="_blank"></a> | |
3350 </td> | |
3351 <td class='DevStatusBox'> | |
3352 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
3353 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
3354 target="_blank"></a> | |
3355 </td> | |
3356 <td class='DevStatusBox'> | |
3357 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3358 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
3359 target="_blank"></a> | |
3360 </td> | |
3361 <td class='DevStatusBox'> | |
3362 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
3363 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
3364 target="_blank"></a> | |
3365 </td> | |
3366 | |
3367 </tr> | |
3368 </table> | |
3369 </td> | |
3370 <td class='DevStatus Alt DevStatusCollapse'> | |
3371 <table width="100%"> | |
3372 <tr> | |
3373 <td class='DevStatusBox'> | |
3374 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
3375 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
3376 target="_blank"></a> | |
3377 </td> | |
3378 | |
3379 </tr> | |
3380 </table> | |
3381 </td> | |
3382 </tr> | |
3383 | |
3384 <tr> | |
3385 <td colspan="7" class='DevComment Alt'> | |
3386 Clean up first run:<br/><br/>* Replace the idea of a FirstRunBrowserProces
s, which existed solely to prevent a couple of classes from trying to make netwo
rk 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 | |
3387 </td> | |
3388 </tr> | |
3389 | |
3390 | |
3391 | |
3392 <tr class='DevStatusSpacing'> | |
3393 <td> | |
3394 </td> | |
3395 </tr> | |
3396 | |
3397 <tr> | |
3398 <td class='DevRev DevRevCollapse' width="1%"> | |
3399 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127229" t
arget="_blank">127229</a> | |
3400 </td> | |
3401 <td class='DevName ' width="1%"> | |
3402 rohitbm<span style="display:none">ohnoyoudont</span>@chromium.org | |
3403 </td> | |
3404 | |
3405 <td class='DevStatus '> | |
3406 <table width="100%"> | |
3407 <tr> | |
3408 <td class='DevStatusBox'> | |
3409 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3410 title='Win' class='DevStatusBox notstarted ' | |
3411 target="_blank"></a> | |
3412 </td> | |
3413 <td class='DevStatusBox'> | |
3414 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3415 title='Mac' class='DevStatusBox notstarted ' | |
3416 target="_blank"></a> | |
3417 </td> | |
3418 <td class='DevStatusBox'> | |
3419 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3420 title='Linux' class='DevStatusBox notstarted ' | |
3421 target="_blank"></a> | |
3422 </td> | |
3423 <td class='DevStatusBox'> | |
3424 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
3425 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
3426 target="_blank"></a> | |
3427 </td> | |
3428 | |
3429 </tr> | |
3430 </table> | |
3431 </td> | |
3432 <td class='DevStatus '> | |
3433 <table width="100%"> | |
3434 <tr> | |
3435 <td class='DevStatusBox'> | |
3436 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
3437 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
3438 target="_blank"></a> | |
3439 </td> | |
3440 <td class='DevStatusBox'> | |
3441 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3442 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
3443 target="_blank"></a> | |
3444 </td> | |
3445 <td class='DevStatusBox'> | |
3446 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3447 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
3448 target="_blank"></a> | |
3449 </td> | |
3450 <td class='DevStatusBox'> | |
3451 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3452 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
3453 target="_blank"></a> | |
3454 </td> | |
3455 <td class='DevStatusBox'> | |
3456 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3457 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
3458 target="_blank"></a> | |
3459 </td> | |
3460 <td class='DevStatusBox'> | |
3461 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3462 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
3463 target="_blank"></a> | |
3464 </td> | |
3465 <td class='DevStatusBox'> | |
3466 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3467 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
3468 target="_blank"></a> | |
3469 </td> | |
3470 <td class='DevStatusBox'> | |
3471 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3472 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
3473 target="_blank"></a> | |
3474 </td> | |
3475 <td class='DevStatusBox'> | |
3476 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3477 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
3478 target="_blank"></a> | |
3479 </td> | |
3480 <td class='DevStatusBox'> | |
3481 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3482 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
3483 target="_blank"></a> | |
3484 </td> | |
3485 <td class='DevStatusBox'> | |
3486 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3487 title='Win7 Sync' class='DevStatusBox notstarted ' | |
3488 target="_blank"></a> | |
3489 </td> | |
3490 <td class='DevStatusBox'> | |
3491 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3492 title='NACL Tests' class='DevStatusBox notstarted ' | |
3493 target="_blank"></a> | |
3494 </td> | |
3495 <td class='DevStatusBox'> | |
3496 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3497 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
3498 target="_blank"></a> | |
3499 </td> | |
3500 <td class='DevStatusBox'> | |
3501 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3502 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
3503 target="_blank"></a> | |
3504 </td> | |
3505 <td class='DevStatusBox'> | |
3506 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3507 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
3508 target="_blank"></a> | |
3509 </td> | |
3510 <td class='DevStatusBox'> | |
3511 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3512 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
3513 target="_blank"></a> | |
3514 </td> | |
3515 <td class='DevStatusBox'> | |
3516 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
3517 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
3518 target="_blank"></a> | |
3519 </td> | |
3520 <td class='DevStatusBox'> | |
3521 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
3522 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
3523 target="_blank"></a> | |
3524 </td> | |
3525 <td class='DevStatusBox'> | |
3526 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3527 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3528 target="_blank"></a> | |
3529 </td> | |
3530 <td class='DevStatusBox'> | |
3531 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3532 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3533 target="_blank"></a> | |
3534 </td> | |
3535 <td class='DevStatusBox'> | |
3536 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3537 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3538 target="_blank"></a> | |
3539 </td> | |
3540 <td class='DevStatusBox'> | |
3541 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3542 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3543 target="_blank"></a> | |
3544 </td> | |
3545 <td class='DevStatusBox'> | |
3546 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3547 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
3548 target="_blank"></a> | |
3549 </td> | |
3550 <td class='DevStatusBox'> | |
3551 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3552 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
3553 target="_blank"></a> | |
3554 </td> | |
3555 <td class='DevStatusBox'> | |
3556 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3557 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3558 target="_blank"></a> | |
3559 </td> | |
3560 <td class='DevStatusBox'> | |
3561 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3562 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3563 target="_blank"></a> | |
3564 </td> | |
3565 <td class='DevStatusBox'> | |
3566 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3567 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3568 target="_blank"></a> | |
3569 </td> | |
3570 <td class='DevStatusBox'> | |
3571 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3572 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3573 target="_blank"></a> | |
3574 </td> | |
3575 <td class='DevStatusBox'> | |
3576 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3577 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
3578 target="_blank"></a> | |
3579 </td> | |
3580 <td class='DevStatusBox'> | |
3581 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3582 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
3583 target="_blank"></a> | |
3584 </td> | |
3585 <td class='DevStatusBox'> | |
3586 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3587 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
3588 target="_blank"></a> | |
3589 </td> | |
3590 <td class='DevStatusBox'> | |
3591 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
3592 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
3593 target="_blank"></a> | |
3594 </td> | |
3595 | |
3596 </tr> | |
3597 </table> | |
3598 </td> | |
3599 <td class='DevStatus '> | |
3600 <table width="100%"> | |
3601 <tr> | |
3602 <td class='DevStatusBox'> | |
3603 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
3604 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
3605 target="_blank"></a> | |
3606 </td> | |
3607 <td class='DevStatusBox'> | |
3608 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3609 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
3610 target="_blank"></a> | |
3611 </td> | |
3612 <td class='DevStatusBox'> | |
3613 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3614 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
3615 target="_blank"></a> | |
3616 </td> | |
3617 <td class='DevStatusBox'> | |
3618 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3619 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
3620 target="_blank"></a> | |
3621 </td> | |
3622 <td class='DevStatusBox'> | |
3623 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3624 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
3625 target="_blank"></a> | |
3626 </td> | |
3627 <td class='DevStatusBox'> | |
3628 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3629 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
3630 target="_blank"></a> | |
3631 </td> | |
3632 <td class='DevStatusBox'> | |
3633 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3634 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
3635 target="_blank"></a> | |
3636 </td> | |
3637 <td class='DevStatusBox'> | |
3638 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3639 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
3640 target="_blank"></a> | |
3641 </td> | |
3642 <td class='DevStatusBox'> | |
3643 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
3644 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
3645 target="_blank"></a> | |
3646 </td> | |
3647 <td class='DevStatusBox'> | |
3648 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3649 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3650 target="_blank"></a> | |
3651 </td> | |
3652 <td class='DevStatusBox'> | |
3653 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3654 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3655 target="_blank"></a> | |
3656 </td> | |
3657 <td class='DevStatusBox'> | |
3658 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3659 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3660 target="_blank"></a> | |
3661 </td> | |
3662 <td class='DevStatusBox'> | |
3663 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3664 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3665 target="_blank"></a> | |
3666 </td> | |
3667 <td class='DevStatusBox'> | |
3668 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3669 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3670 target="_blank"></a> | |
3671 </td> | |
3672 <td class='DevStatusBox'> | |
3673 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3674 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3675 target="_blank"></a> | |
3676 </td> | |
3677 <td class='DevStatusBox'> | |
3678 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3679 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3680 target="_blank"></a> | |
3681 </td> | |
3682 <td class='DevStatusBox'> | |
3683 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3684 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3685 target="_blank"></a> | |
3686 </td> | |
3687 | |
3688 </tr> | |
3689 </table> | |
3690 </td> | |
3691 <td class='DevStatus '> | |
3692 <table width="100%"> | |
3693 <tr> | |
3694 <td class='DevStatusBox'> | |
3695 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
3696 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
3697 target="_blank"></a> | |
3698 </td> | |
3699 <td class='DevStatusBox'> | |
3700 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3701 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
3702 target="_blank"></a> | |
3703 </td> | |
3704 <td class='DevStatusBox'> | |
3705 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3706 title='Linux Sync' class='DevStatusBox notstarted ' | |
3707 target="_blank"></a> | |
3708 </td> | |
3709 <td class='DevStatusBox'> | |
3710 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
3711 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
3712 target="_blank"></a> | |
3713 </td> | |
3714 <td class='DevStatusBox'> | |
3715 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3716 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3717 target="_blank"></a> | |
3718 </td> | |
3719 <td class='DevStatusBox'> | |
3720 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3721 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3722 target="_blank"></a> | |
3723 </td> | |
3724 <td class='DevStatusBox'> | |
3725 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
3726 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
3727 target="_blank"></a> | |
3728 </td> | |
3729 <td class='DevStatusBox'> | |
3730 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3731 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
3732 target="_blank"></a> | |
3733 </td> | |
3734 <td class='DevStatusBox'> | |
3735 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
3736 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
3737 target="_blank"></a> | |
3738 </td> | |
3739 | |
3740 </tr> | |
3741 </table> | |
3742 </td> | |
3743 <td class='DevStatus DevStatusCollapse'> | |
3744 <table width="100%"> | |
3745 <tr> | |
3746 <td class='DevStatusBox'> | |
3747 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
3748 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
3749 target="_blank"></a> | |
3750 </td> | |
3751 | |
3752 </tr> | |
3753 </table> | |
3754 </td> | |
3755 </tr> | |
3756 | |
3757 <tr> | |
3758 <td colspan="7" class='DevComment '> | |
3759 Updating the Netflix plugin version info for plugins check test.<br/>Revie
w URL: https://chromiumcodereview.appspot.com/9704100 | |
3760 </td> | |
3761 </tr> | |
3762 | |
3763 | |
3764 | |
3765 <tr class='DevStatusSpacing'> | |
3766 <td> | |
3767 </td> | |
3768 </tr> | |
3769 | |
3770 <tr> | |
3771 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
3772 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127228" t
arget="_blank">127228</a> | |
3773 </td> | |
3774 <td class='DevName Alt' width="1%"> | |
3775 elijahtaylor<span style="display:none">ohnoyoudont</span>@google.com | |
3776 </td> | |
3777 | |
3778 <td class='DevStatus Alt '> | |
3779 <table width="100%"> | |
3780 <tr> | |
3781 <td class='DevStatusBox'> | |
3782 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3783 title='Win' class='DevStatusBox notstarted ' | |
3784 target="_blank"></a> | |
3785 </td> | |
3786 <td class='DevStatusBox'> | |
3787 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3788 title='Mac' class='DevStatusBox notstarted ' | |
3789 target="_blank"></a> | |
3790 </td> | |
3791 <td class='DevStatusBox'> | |
3792 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3793 title='Linux' class='DevStatusBox notstarted ' | |
3794 target="_blank"></a> | |
3795 </td> | |
3796 <td class='DevStatusBox'> | |
3797 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
3798 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
3799 target="_blank"></a> | |
3800 </td> | |
3801 | |
3802 </tr> | |
3803 </table> | |
3804 </td> | |
3805 <td class='DevStatus Alt '> | |
3806 <table width="100%"> | |
3807 <tr> | |
3808 <td class='DevStatusBox'> | |
3809 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
3810 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
3811 target="_blank"></a> | |
3812 </td> | |
3813 <td class='DevStatusBox'> | |
3814 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3815 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
3816 target="_blank"></a> | |
3817 </td> | |
3818 <td class='DevStatusBox'> | |
3819 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3820 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
3821 target="_blank"></a> | |
3822 </td> | |
3823 <td class='DevStatusBox'> | |
3824 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3825 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
3826 target="_blank"></a> | |
3827 </td> | |
3828 <td class='DevStatusBox'> | |
3829 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3830 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
3831 target="_blank"></a> | |
3832 </td> | |
3833 <td class='DevStatusBox'> | |
3834 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3835 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
3836 target="_blank"></a> | |
3837 </td> | |
3838 <td class='DevStatusBox'> | |
3839 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3840 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
3841 target="_blank"></a> | |
3842 </td> | |
3843 <td class='DevStatusBox'> | |
3844 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3845 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
3846 target="_blank"></a> | |
3847 </td> | |
3848 <td class='DevStatusBox'> | |
3849 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3850 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
3851 target="_blank"></a> | |
3852 </td> | |
3853 <td class='DevStatusBox'> | |
3854 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3855 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
3856 target="_blank"></a> | |
3857 </td> | |
3858 <td class='DevStatusBox'> | |
3859 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3860 title='Win7 Sync' class='DevStatusBox notstarted ' | |
3861 target="_blank"></a> | |
3862 </td> | |
3863 <td class='DevStatusBox'> | |
3864 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3865 title='NACL Tests' class='DevStatusBox notstarted ' | |
3866 target="_blank"></a> | |
3867 </td> | |
3868 <td class='DevStatusBox'> | |
3869 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3870 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
3871 target="_blank"></a> | |
3872 </td> | |
3873 <td class='DevStatusBox'> | |
3874 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3875 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
3876 target="_blank"></a> | |
3877 </td> | |
3878 <td class='DevStatusBox'> | |
3879 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3880 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
3881 target="_blank"></a> | |
3882 </td> | |
3883 <td class='DevStatusBox'> | |
3884 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3885 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
3886 target="_blank"></a> | |
3887 </td> | |
3888 <td class='DevStatusBox'> | |
3889 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
3890 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
3891 target="_blank"></a> | |
3892 </td> | |
3893 <td class='DevStatusBox'> | |
3894 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
3895 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
3896 target="_blank"></a> | |
3897 </td> | |
3898 <td class='DevStatusBox'> | |
3899 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3900 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3901 target="_blank"></a> | |
3902 </td> | |
3903 <td class='DevStatusBox'> | |
3904 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3905 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3906 target="_blank"></a> | |
3907 </td> | |
3908 <td class='DevStatusBox'> | |
3909 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3910 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3911 target="_blank"></a> | |
3912 </td> | |
3913 <td class='DevStatusBox'> | |
3914 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3915 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3916 target="_blank"></a> | |
3917 </td> | |
3918 <td class='DevStatusBox'> | |
3919 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3920 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
3921 target="_blank"></a> | |
3922 </td> | |
3923 <td class='DevStatusBox'> | |
3924 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3925 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
3926 target="_blank"></a> | |
3927 </td> | |
3928 <td class='DevStatusBox'> | |
3929 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3930 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
3931 target="_blank"></a> | |
3932 </td> | |
3933 <td class='DevStatusBox'> | |
3934 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3935 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
3936 target="_blank"></a> | |
3937 </td> | |
3938 <td class='DevStatusBox'> | |
3939 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3940 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
3941 target="_blank"></a> | |
3942 </td> | |
3943 <td class='DevStatusBox'> | |
3944 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3945 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
3946 target="_blank"></a> | |
3947 </td> | |
3948 <td class='DevStatusBox'> | |
3949 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3950 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
3951 target="_blank"></a> | |
3952 </td> | |
3953 <td class='DevStatusBox'> | |
3954 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3955 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
3956 target="_blank"></a> | |
3957 </td> | |
3958 <td class='DevStatusBox'> | |
3959 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3960 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
3961 target="_blank"></a> | |
3962 </td> | |
3963 <td class='DevStatusBox'> | |
3964 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
3965 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
3966 target="_blank"></a> | |
3967 </td> | |
3968 | |
3969 </tr> | |
3970 </table> | |
3971 </td> | |
3972 <td class='DevStatus Alt '> | |
3973 <table width="100%"> | |
3974 <tr> | |
3975 <td class='DevStatusBox'> | |
3976 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
3977 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
3978 target="_blank"></a> | |
3979 </td> | |
3980 <td class='DevStatusBox'> | |
3981 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3982 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
3983 target="_blank"></a> | |
3984 </td> | |
3985 <td class='DevStatusBox'> | |
3986 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3987 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
3988 target="_blank"></a> | |
3989 </td> | |
3990 <td class='DevStatusBox'> | |
3991 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3992 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
3993 target="_blank"></a> | |
3994 </td> | |
3995 <td class='DevStatusBox'> | |
3996 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
3997 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
3998 target="_blank"></a> | |
3999 </td> | |
4000 <td class='DevStatusBox'> | |
4001 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4002 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
4003 target="_blank"></a> | |
4004 </td> | |
4005 <td class='DevStatusBox'> | |
4006 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4007 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
4008 target="_blank"></a> | |
4009 </td> | |
4010 <td class='DevStatusBox'> | |
4011 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4012 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
4013 target="_blank"></a> | |
4014 </td> | |
4015 <td class='DevStatusBox'> | |
4016 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
4017 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
4018 target="_blank"></a> | |
4019 </td> | |
4020 <td class='DevStatusBox'> | |
4021 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4022 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4023 target="_blank"></a> | |
4024 </td> | |
4025 <td class='DevStatusBox'> | |
4026 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4027 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4028 target="_blank"></a> | |
4029 </td> | |
4030 <td class='DevStatusBox'> | |
4031 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4032 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4033 target="_blank"></a> | |
4034 </td> | |
4035 <td class='DevStatusBox'> | |
4036 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4037 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4038 target="_blank"></a> | |
4039 </td> | |
4040 <td class='DevStatusBox'> | |
4041 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4042 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4043 target="_blank"></a> | |
4044 </td> | |
4045 <td class='DevStatusBox'> | |
4046 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4047 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4048 target="_blank"></a> | |
4049 </td> | |
4050 <td class='DevStatusBox'> | |
4051 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4052 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4053 target="_blank"></a> | |
4054 </td> | |
4055 <td class='DevStatusBox'> | |
4056 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4057 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4058 target="_blank"></a> | |
4059 </td> | |
4060 | |
4061 </tr> | |
4062 </table> | |
4063 </td> | |
4064 <td class='DevStatus Alt '> | |
4065 <table width="100%"> | |
4066 <tr> | |
4067 <td class='DevStatusBox'> | |
4068 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
4069 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
4070 target="_blank"></a> | |
4071 </td> | |
4072 <td class='DevStatusBox'> | |
4073 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4074 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
4075 target="_blank"></a> | |
4076 </td> | |
4077 <td class='DevStatusBox'> | |
4078 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4079 title='Linux Sync' class='DevStatusBox notstarted ' | |
4080 target="_blank"></a> | |
4081 </td> | |
4082 <td class='DevStatusBox'> | |
4083 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
4084 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
4085 target="_blank"></a> | |
4086 </td> | |
4087 <td class='DevStatusBox'> | |
4088 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4089 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4090 target="_blank"></a> | |
4091 </td> | |
4092 <td class='DevStatusBox'> | |
4093 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4094 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4095 target="_blank"></a> | |
4096 </td> | |
4097 <td class='DevStatusBox'> | |
4098 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
4099 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
4100 target="_blank"></a> | |
4101 </td> | |
4102 <td class='DevStatusBox'> | |
4103 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4104 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
4105 target="_blank"></a> | |
4106 </td> | |
4107 <td class='DevStatusBox'> | |
4108 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
4109 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
4110 target="_blank"></a> | |
4111 </td> | |
4112 | |
4113 </tr> | |
4114 </table> | |
4115 </td> | |
4116 <td class='DevStatus Alt DevStatusCollapse'> | |
4117 <table width="100%"> | |
4118 <tr> | |
4119 <td class='DevStatusBox'> | |
4120 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
4121 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
4122 target="_blank"></a> | |
4123 </td> | |
4124 | |
4125 </tr> | |
4126 </table> | |
4127 </td> | |
4128 </tr> | |
4129 | |
4130 <tr> | |
4131 <td colspan="7" class='DevComment Alt'> | |
4132 Mono builder cleanup:<br/><br/>- restructure build scripts to allow 2 buil
ds + 1 archive per checkin<br/>- build 32- and 64-bit on one bot so a full packa
ge is built<br/>- fix paths in tarball to be relative (lib/, lib32/, include/, e
tc)<br/><br/>BUG=115363<br/>TEST=bots,manual<br/>Review URL: https://chromiumcod
ereview.appspot.com/9689021 | |
4133 </td> | |
4134 </tr> | |
4135 | |
4136 | |
4137 | |
4138 <tr class='DevStatusSpacing'> | |
4139 <td> | |
4140 </td> | |
4141 </tr> | |
4142 | |
4143 <tr> | |
4144 <td class='DevRev DevRevCollapse' width="1%"> | |
4145 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127227" t
arget="_blank">127227</a> | |
4146 </td> | |
4147 <td class='DevName ' width="1%"> | |
4148 reveman<span style="display:none">ohnoyoudont</span>@google.com | |
4149 </td> | |
4150 | |
4151 <td class='DevStatus '> | |
4152 <table width="100%"> | |
4153 <tr> | |
4154 <td class='DevStatusBox'> | |
4155 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4156 title='Win' class='DevStatusBox notstarted ' | |
4157 target="_blank"></a> | |
4158 </td> | |
4159 <td class='DevStatusBox'> | |
4160 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4161 title='Mac' class='DevStatusBox notstarted ' | |
4162 target="_blank"></a> | |
4163 </td> | |
4164 <td class='DevStatusBox'> | |
4165 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4166 title='Linux' class='DevStatusBox notstarted ' | |
4167 target="_blank"></a> | |
4168 </td> | |
4169 <td class='DevStatusBox'> | |
4170 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
4171 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
4172 target="_blank"></a> | |
4173 </td> | |
4174 | |
4175 </tr> | |
4176 </table> | |
4177 </td> | |
4178 <td class='DevStatus '> | |
4179 <table width="100%"> | |
4180 <tr> | |
4181 <td class='DevStatusBox'> | |
4182 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
4183 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
4184 target="_blank"></a> | |
4185 </td> | |
4186 <td class='DevStatusBox'> | |
4187 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4188 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
4189 target="_blank"></a> | |
4190 </td> | |
4191 <td class='DevStatusBox'> | |
4192 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4193 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
4194 target="_blank"></a> | |
4195 </td> | |
4196 <td class='DevStatusBox'> | |
4197 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4198 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
4199 target="_blank"></a> | |
4200 </td> | |
4201 <td class='DevStatusBox'> | |
4202 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4203 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
4204 target="_blank"></a> | |
4205 </td> | |
4206 <td class='DevStatusBox'> | |
4207 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4208 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
4209 target="_blank"></a> | |
4210 </td> | |
4211 <td class='DevStatusBox'> | |
4212 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4213 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
4214 target="_blank"></a> | |
4215 </td> | |
4216 <td class='DevStatusBox'> | |
4217 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4218 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
4219 target="_blank"></a> | |
4220 </td> | |
4221 <td class='DevStatusBox'> | |
4222 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4223 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
4224 target="_blank"></a> | |
4225 </td> | |
4226 <td class='DevStatusBox'> | |
4227 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4228 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
4229 target="_blank"></a> | |
4230 </td> | |
4231 <td class='DevStatusBox'> | |
4232 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4233 title='Win7 Sync' class='DevStatusBox notstarted ' | |
4234 target="_blank"></a> | |
4235 </td> | |
4236 <td class='DevStatusBox'> | |
4237 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4238 title='NACL Tests' class='DevStatusBox notstarted ' | |
4239 target="_blank"></a> | |
4240 </td> | |
4241 <td class='DevStatusBox'> | |
4242 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4243 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
4244 target="_blank"></a> | |
4245 </td> | |
4246 <td class='DevStatusBox'> | |
4247 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4248 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
4249 target="_blank"></a> | |
4250 </td> | |
4251 <td class='DevStatusBox'> | |
4252 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4253 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
4254 target="_blank"></a> | |
4255 </td> | |
4256 <td class='DevStatusBox'> | |
4257 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4258 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
4259 target="_blank"></a> | |
4260 </td> | |
4261 <td class='DevStatusBox'> | |
4262 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
4263 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
4264 target="_blank"></a> | |
4265 </td> | |
4266 <td class='DevStatusBox'> | |
4267 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
4268 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
4269 target="_blank"></a> | |
4270 </td> | |
4271 <td class='DevStatusBox'> | |
4272 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4273 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4274 target="_blank"></a> | |
4275 </td> | |
4276 <td class='DevStatusBox'> | |
4277 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4278 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4279 target="_blank"></a> | |
4280 </td> | |
4281 <td class='DevStatusBox'> | |
4282 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4283 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4284 target="_blank"></a> | |
4285 </td> | |
4286 <td class='DevStatusBox'> | |
4287 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4288 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4289 target="_blank"></a> | |
4290 </td> | |
4291 <td class='DevStatusBox'> | |
4292 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4293 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
4294 target="_blank"></a> | |
4295 </td> | |
4296 <td class='DevStatusBox'> | |
4297 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4298 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
4299 target="_blank"></a> | |
4300 </td> | |
4301 <td class='DevStatusBox'> | |
4302 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4303 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4304 target="_blank"></a> | |
4305 </td> | |
4306 <td class='DevStatusBox'> | |
4307 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4308 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4309 target="_blank"></a> | |
4310 </td> | |
4311 <td class='DevStatusBox'> | |
4312 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4313 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4314 target="_blank"></a> | |
4315 </td> | |
4316 <td class='DevStatusBox'> | |
4317 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4318 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4319 target="_blank"></a> | |
4320 </td> | |
4321 <td class='DevStatusBox'> | |
4322 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4323 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
4324 target="_blank"></a> | |
4325 </td> | |
4326 <td class='DevStatusBox'> | |
4327 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4328 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
4329 target="_blank"></a> | |
4330 </td> | |
4331 <td class='DevStatusBox'> | |
4332 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4333 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
4334 target="_blank"></a> | |
4335 </td> | |
4336 <td class='DevStatusBox'> | |
4337 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
4338 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
4339 target="_blank"></a> | |
4340 </td> | |
4341 | |
4342 </tr> | |
4343 </table> | |
4344 </td> | |
4345 <td class='DevStatus '> | |
4346 <table width="100%"> | |
4347 <tr> | |
4348 <td class='DevStatusBox'> | |
4349 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
4350 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
4351 target="_blank"></a> | |
4352 </td> | |
4353 <td class='DevStatusBox'> | |
4354 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4355 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
4356 target="_blank"></a> | |
4357 </td> | |
4358 <td class='DevStatusBox'> | |
4359 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4360 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
4361 target="_blank"></a> | |
4362 </td> | |
4363 <td class='DevStatusBox'> | |
4364 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4365 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
4366 target="_blank"></a> | |
4367 </td> | |
4368 <td class='DevStatusBox'> | |
4369 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4370 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
4371 target="_blank"></a> | |
4372 </td> | |
4373 <td class='DevStatusBox'> | |
4374 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4375 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
4376 target="_blank"></a> | |
4377 </td> | |
4378 <td class='DevStatusBox'> | |
4379 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4380 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
4381 target="_blank"></a> | |
4382 </td> | |
4383 <td class='DevStatusBox'> | |
4384 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4385 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
4386 target="_blank"></a> | |
4387 </td> | |
4388 <td class='DevStatusBox'> | |
4389 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
4390 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
4391 target="_blank"></a> | |
4392 </td> | |
4393 <td class='DevStatusBox'> | |
4394 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4395 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4396 target="_blank"></a> | |
4397 </td> | |
4398 <td class='DevStatusBox'> | |
4399 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4400 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4401 target="_blank"></a> | |
4402 </td> | |
4403 <td class='DevStatusBox'> | |
4404 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4405 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4406 target="_blank"></a> | |
4407 </td> | |
4408 <td class='DevStatusBox'> | |
4409 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4410 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4411 target="_blank"></a> | |
4412 </td> | |
4413 <td class='DevStatusBox'> | |
4414 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4415 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4416 target="_blank"></a> | |
4417 </td> | |
4418 <td class='DevStatusBox'> | |
4419 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4420 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4421 target="_blank"></a> | |
4422 </td> | |
4423 <td class='DevStatusBox'> | |
4424 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4425 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4426 target="_blank"></a> | |
4427 </td> | |
4428 <td class='DevStatusBox'> | |
4429 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4430 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4431 target="_blank"></a> | |
4432 </td> | |
4433 | |
4434 </tr> | |
4435 </table> | |
4436 </td> | |
4437 <td class='DevStatus '> | |
4438 <table width="100%"> | |
4439 <tr> | |
4440 <td class='DevStatusBox'> | |
4441 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
4442 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
4443 target="_blank"></a> | |
4444 </td> | |
4445 <td class='DevStatusBox'> | |
4446 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4447 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
4448 target="_blank"></a> | |
4449 </td> | |
4450 <td class='DevStatusBox'> | |
4451 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4452 title='Linux Sync' class='DevStatusBox notstarted ' | |
4453 target="_blank"></a> | |
4454 </td> | |
4455 <td class='DevStatusBox'> | |
4456 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
4457 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
4458 target="_blank"></a> | |
4459 </td> | |
4460 <td class='DevStatusBox'> | |
4461 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4462 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4463 target="_blank"></a> | |
4464 </td> | |
4465 <td class='DevStatusBox'> | |
4466 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4467 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4468 target="_blank"></a> | |
4469 </td> | |
4470 <td class='DevStatusBox'> | |
4471 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
4472 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
4473 target="_blank"></a> | |
4474 </td> | |
4475 <td class='DevStatusBox'> | |
4476 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4477 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
4478 target="_blank"></a> | |
4479 </td> | |
4480 <td class='DevStatusBox'> | |
4481 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
4482 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
4483 target="_blank"></a> | |
4484 </td> | |
4485 | |
4486 </tr> | |
4487 </table> | |
4488 </td> | |
4489 <td class='DevStatus DevStatusCollapse'> | |
4490 <table width="100%"> | |
4491 <tr> | |
4492 <td class='DevStatusBox'> | |
4493 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
4494 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
4495 target="_blank"></a> | |
4496 </td> | |
4497 | |
4498 </tr> | |
4499 </table> | |
4500 </td> | |
4501 </tr> | |
4502 | |
4503 <tr> | |
4504 <td colspan="7" class='DevComment '> | |
4505 Avoid using skia::ScopedPlatformPaint in RenderTextLinux::EnsureLayout().
This allows RenderTextLinux to be used for rendering to platform independent can
vas.<br/><br/>BUG=111587<br/>TEST=none<br/><br/>Review URL: https://chromiumcode
review.appspot.com/9665011 | |
4506 </td> | |
4507 </tr> | |
4508 | |
4509 | |
4510 | |
4511 <tr class='DevStatusSpacing'> | |
4512 <td> | |
4513 </td> | |
4514 </tr> | |
4515 | |
4516 <tr> | |
4517 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
4518 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127226" t
arget="_blank">127226</a> | |
4519 </td> | |
4520 <td class='DevName Alt' width="1%"> | |
4521 pkasting<span style="display:none">ohnoyoudont</span>@chromium.org | |
4522 </td> | |
4523 | |
4524 <td class='DevStatus Alt '> | |
4525 <table width="100%"> | |
4526 <tr> | |
4527 <td class='DevStatusBox'> | |
4528 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4529 title='Win' class='DevStatusBox notstarted ' | |
4530 target="_blank"></a> | |
4531 </td> | |
4532 <td class='DevStatusBox'> | |
4533 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4534 title='Mac' class='DevStatusBox notstarted ' | |
4535 target="_blank"></a> | |
4536 </td> | |
4537 <td class='DevStatusBox'> | |
4538 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4539 title='Linux' class='DevStatusBox notstarted ' | |
4540 target="_blank"></a> | |
4541 </td> | |
4542 <td class='DevStatusBox'> | |
4543 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
4544 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
4545 target="_blank"></a> | |
4546 </td> | |
4547 | |
4548 </tr> | |
4549 </table> | |
4550 </td> | |
4551 <td class='DevStatus Alt '> | |
4552 <table width="100%"> | |
4553 <tr> | |
4554 <td class='DevStatusBox'> | |
4555 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
4556 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
4557 target="_blank"></a> | |
4558 </td> | |
4559 <td class='DevStatusBox'> | |
4560 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4561 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
4562 target="_blank"></a> | |
4563 </td> | |
4564 <td class='DevStatusBox'> | |
4565 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4566 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
4567 target="_blank"></a> | |
4568 </td> | |
4569 <td class='DevStatusBox'> | |
4570 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4571 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
4572 target="_blank"></a> | |
4573 </td> | |
4574 <td class='DevStatusBox'> | |
4575 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4576 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
4577 target="_blank"></a> | |
4578 </td> | |
4579 <td class='DevStatusBox'> | |
4580 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4581 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
4582 target="_blank"></a> | |
4583 </td> | |
4584 <td class='DevStatusBox'> | |
4585 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4586 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
4587 target="_blank"></a> | |
4588 </td> | |
4589 <td class='DevStatusBox'> | |
4590 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4591 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
4592 target="_blank"></a> | |
4593 </td> | |
4594 <td class='DevStatusBox'> | |
4595 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4596 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
4597 target="_blank"></a> | |
4598 </td> | |
4599 <td class='DevStatusBox'> | |
4600 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4601 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
4602 target="_blank"></a> | |
4603 </td> | |
4604 <td class='DevStatusBox'> | |
4605 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4606 title='Win7 Sync' class='DevStatusBox notstarted ' | |
4607 target="_blank"></a> | |
4608 </td> | |
4609 <td class='DevStatusBox'> | |
4610 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4611 title='NACL Tests' class='DevStatusBox notstarted ' | |
4612 target="_blank"></a> | |
4613 </td> | |
4614 <td class='DevStatusBox'> | |
4615 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4616 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
4617 target="_blank"></a> | |
4618 </td> | |
4619 <td class='DevStatusBox'> | |
4620 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4621 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
4622 target="_blank"></a> | |
4623 </td> | |
4624 <td class='DevStatusBox'> | |
4625 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4626 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
4627 target="_blank"></a> | |
4628 </td> | |
4629 <td class='DevStatusBox'> | |
4630 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4631 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
4632 target="_blank"></a> | |
4633 </td> | |
4634 <td class='DevStatusBox'> | |
4635 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
4636 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
4637 target="_blank"></a> | |
4638 </td> | |
4639 <td class='DevStatusBox'> | |
4640 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
4641 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
4642 target="_blank"></a> | |
4643 </td> | |
4644 <td class='DevStatusBox'> | |
4645 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4646 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4647 target="_blank"></a> | |
4648 </td> | |
4649 <td class='DevStatusBox'> | |
4650 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4651 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4652 target="_blank"></a> | |
4653 </td> | |
4654 <td class='DevStatusBox'> | |
4655 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4656 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4657 target="_blank"></a> | |
4658 </td> | |
4659 <td class='DevStatusBox'> | |
4660 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4661 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4662 target="_blank"></a> | |
4663 </td> | |
4664 <td class='DevStatusBox'> | |
4665 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4666 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
4667 target="_blank"></a> | |
4668 </td> | |
4669 <td class='DevStatusBox'> | |
4670 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4671 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
4672 target="_blank"></a> | |
4673 </td> | |
4674 <td class='DevStatusBox'> | |
4675 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4676 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4677 target="_blank"></a> | |
4678 </td> | |
4679 <td class='DevStatusBox'> | |
4680 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4681 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4682 target="_blank"></a> | |
4683 </td> | |
4684 <td class='DevStatusBox'> | |
4685 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4686 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4687 target="_blank"></a> | |
4688 </td> | |
4689 <td class='DevStatusBox'> | |
4690 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4691 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4692 target="_blank"></a> | |
4693 </td> | |
4694 <td class='DevStatusBox'> | |
4695 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4696 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
4697 target="_blank"></a> | |
4698 </td> | |
4699 <td class='DevStatusBox'> | |
4700 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4701 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
4702 target="_blank"></a> | |
4703 </td> | |
4704 <td class='DevStatusBox'> | |
4705 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4706 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
4707 target="_blank"></a> | |
4708 </td> | |
4709 <td class='DevStatusBox'> | |
4710 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
4711 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
4712 target="_blank"></a> | |
4713 </td> | |
4714 | |
4715 </tr> | |
4716 </table> | |
4717 </td> | |
4718 <td class='DevStatus Alt '> | |
4719 <table width="100%"> | |
4720 <tr> | |
4721 <td class='DevStatusBox'> | |
4722 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
4723 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
4724 target="_blank"></a> | |
4725 </td> | |
4726 <td class='DevStatusBox'> | |
4727 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4728 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
4729 target="_blank"></a> | |
4730 </td> | |
4731 <td class='DevStatusBox'> | |
4732 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4733 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
4734 target="_blank"></a> | |
4735 </td> | |
4736 <td class='DevStatusBox'> | |
4737 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4738 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
4739 target="_blank"></a> | |
4740 </td> | |
4741 <td class='DevStatusBox'> | |
4742 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4743 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
4744 target="_blank"></a> | |
4745 </td> | |
4746 <td class='DevStatusBox'> | |
4747 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4748 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
4749 target="_blank"></a> | |
4750 </td> | |
4751 <td class='DevStatusBox'> | |
4752 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4753 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
4754 target="_blank"></a> | |
4755 </td> | |
4756 <td class='DevStatusBox'> | |
4757 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4758 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
4759 target="_blank"></a> | |
4760 </td> | |
4761 <td class='DevStatusBox'> | |
4762 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
4763 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
4764 target="_blank"></a> | |
4765 </td> | |
4766 <td class='DevStatusBox'> | |
4767 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4768 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4769 target="_blank"></a> | |
4770 </td> | |
4771 <td class='DevStatusBox'> | |
4772 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4773 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4774 target="_blank"></a> | |
4775 </td> | |
4776 <td class='DevStatusBox'> | |
4777 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4778 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4779 target="_blank"></a> | |
4780 </td> | |
4781 <td class='DevStatusBox'> | |
4782 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4783 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4784 target="_blank"></a> | |
4785 </td> | |
4786 <td class='DevStatusBox'> | |
4787 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4788 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4789 target="_blank"></a> | |
4790 </td> | |
4791 <td class='DevStatusBox'> | |
4792 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4793 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4794 target="_blank"></a> | |
4795 </td> | |
4796 <td class='DevStatusBox'> | |
4797 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4798 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
4799 target="_blank"></a> | |
4800 </td> | |
4801 <td class='DevStatusBox'> | |
4802 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4803 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
4804 target="_blank"></a> | |
4805 </td> | |
4806 | |
4807 </tr> | |
4808 </table> | |
4809 </td> | |
4810 <td class='DevStatus Alt '> | |
4811 <table width="100%"> | |
4812 <tr> | |
4813 <td class='DevStatusBox'> | |
4814 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
4815 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
4816 target="_blank"></a> | |
4817 </td> | |
4818 <td class='DevStatusBox'> | |
4819 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4820 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
4821 target="_blank"></a> | |
4822 </td> | |
4823 <td class='DevStatusBox'> | |
4824 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4825 title='Linux Sync' class='DevStatusBox notstarted ' | |
4826 target="_blank"></a> | |
4827 </td> | |
4828 <td class='DevStatusBox'> | |
4829 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
4830 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
4831 target="_blank"></a> | |
4832 </td> | |
4833 <td class='DevStatusBox'> | |
4834 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4835 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
4836 target="_blank"></a> | |
4837 </td> | |
4838 <td class='DevStatusBox'> | |
4839 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4840 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
4841 target="_blank"></a> | |
4842 </td> | |
4843 <td class='DevStatusBox'> | |
4844 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
4845 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
4846 target="_blank"></a> | |
4847 </td> | |
4848 <td class='DevStatusBox'> | |
4849 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4850 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
4851 target="_blank"></a> | |
4852 </td> | |
4853 <td class='DevStatusBox'> | |
4854 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
4855 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
4856 target="_blank"></a> | |
4857 </td> | |
4858 | |
4859 </tr> | |
4860 </table> | |
4861 </td> | |
4862 <td class='DevStatus Alt DevStatusCollapse'> | |
4863 <table width="100%"> | |
4864 <tr> | |
4865 <td class='DevStatusBox'> | |
4866 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
4867 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
4868 target="_blank"></a> | |
4869 </td> | |
4870 | |
4871 </tr> | |
4872 </table> | |
4873 </td> | |
4874 </tr> | |
4875 | |
4876 <tr> | |
4877 <td colspan="7" class='DevComment Alt'> | |
4878 Clean up chrome/browser/search_engines/: <br/><br/>* Remove the notion of
SearchEngineType from TemplateURL. It's now solely the domain of the prepopu
late data. <br/>* Simplify TemplateURL IPC code. <br/>* Remove TemplateURLRef::S
etGoogleBaseURL(), which was an unnecessary passthrough to another public static
function. <br/>* Use "google.*"-like strings consistently for Google ba
se URLs in tests; this will become important later when keyword autogeneration c
hanges to depend on the host being a Google URL. <br/>* Define base SearchTermsD
ata::GetApplicationLocale() and GetRlzParameterValue() implementations and remov
e 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 no
w. (First of a number of changes that move toward making TemplateURL more immuta
ble so we can then remove "const" from the | |
4879 </td> | |
4880 </tr> | |
4881 | |
4882 | |
4883 | |
4884 <tr class='DevStatusSpacing'> | |
4885 <td> | |
4886 </td> | |
4887 </tr> | |
4888 | |
4889 <tr> | |
4890 <td class='DevRev DevRevCollapse' width="1%"> | |
4891 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127225" t
arget="_blank">127225</a> | |
4892 </td> | |
4893 <td class='DevName ' width="1%"> | |
4894 altimofeev<span style="display:none">ohnoyoudont</span>@chromium.org | |
4895 </td> | |
4896 | |
4897 <td class='DevStatus '> | |
4898 <table width="100%"> | |
4899 <tr> | |
4900 <td class='DevStatusBox'> | |
4901 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4902 title='Win' class='DevStatusBox notstarted ' | |
4903 target="_blank"></a> | |
4904 </td> | |
4905 <td class='DevStatusBox'> | |
4906 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4907 title='Mac' class='DevStatusBox notstarted ' | |
4908 target="_blank"></a> | |
4909 </td> | |
4910 <td class='DevStatusBox'> | |
4911 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4912 title='Linux' class='DevStatusBox notstarted ' | |
4913 target="_blank"></a> | |
4914 </td> | |
4915 <td class='DevStatusBox'> | |
4916 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
4917 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
4918 target="_blank"></a> | |
4919 </td> | |
4920 | |
4921 </tr> | |
4922 </table> | |
4923 </td> | |
4924 <td class='DevStatus '> | |
4925 <table width="100%"> | |
4926 <tr> | |
4927 <td class='DevStatusBox'> | |
4928 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
4929 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
4930 target="_blank"></a> | |
4931 </td> | |
4932 <td class='DevStatusBox'> | |
4933 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4934 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
4935 target="_blank"></a> | |
4936 </td> | |
4937 <td class='DevStatusBox'> | |
4938 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4939 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
4940 target="_blank"></a> | |
4941 </td> | |
4942 <td class='DevStatusBox'> | |
4943 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4944 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
4945 target="_blank"></a> | |
4946 </td> | |
4947 <td class='DevStatusBox'> | |
4948 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4949 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
4950 target="_blank"></a> | |
4951 </td> | |
4952 <td class='DevStatusBox'> | |
4953 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4954 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
4955 target="_blank"></a> | |
4956 </td> | |
4957 <td class='DevStatusBox'> | |
4958 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4959 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
4960 target="_blank"></a> | |
4961 </td> | |
4962 <td class='DevStatusBox'> | |
4963 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4964 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
4965 target="_blank"></a> | |
4966 </td> | |
4967 <td class='DevStatusBox'> | |
4968 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4969 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
4970 target="_blank"></a> | |
4971 </td> | |
4972 <td class='DevStatusBox'> | |
4973 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4974 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
4975 target="_blank"></a> | |
4976 </td> | |
4977 <td class='DevStatusBox'> | |
4978 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4979 title='Win7 Sync' class='DevStatusBox notstarted ' | |
4980 target="_blank"></a> | |
4981 </td> | |
4982 <td class='DevStatusBox'> | |
4983 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4984 title='NACL Tests' class='DevStatusBox notstarted ' | |
4985 target="_blank"></a> | |
4986 </td> | |
4987 <td class='DevStatusBox'> | |
4988 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4989 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
4990 target="_blank"></a> | |
4991 </td> | |
4992 <td class='DevStatusBox'> | |
4993 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4994 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
4995 target="_blank"></a> | |
4996 </td> | |
4997 <td class='DevStatusBox'> | |
4998 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
4999 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
5000 target="_blank"></a> | |
5001 </td> | |
5002 <td class='DevStatusBox'> | |
5003 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5004 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
5005 target="_blank"></a> | |
5006 </td> | |
5007 <td class='DevStatusBox'> | |
5008 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
5009 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
5010 target="_blank"></a> | |
5011 </td> | |
5012 <td class='DevStatusBox'> | |
5013 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
5014 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
5015 target="_blank"></a> | |
5016 </td> | |
5017 <td class='DevStatusBox'> | |
5018 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5019 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5020 target="_blank"></a> | |
5021 </td> | |
5022 <td class='DevStatusBox'> | |
5023 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5024 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5025 target="_blank"></a> | |
5026 </td> | |
5027 <td class='DevStatusBox'> | |
5028 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5029 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5030 target="_blank"></a> | |
5031 </td> | |
5032 <td class='DevStatusBox'> | |
5033 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5034 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5035 target="_blank"></a> | |
5036 </td> | |
5037 <td class='DevStatusBox'> | |
5038 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5039 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
5040 target="_blank"></a> | |
5041 </td> | |
5042 <td class='DevStatusBox'> | |
5043 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5044 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
5045 target="_blank"></a> | |
5046 </td> | |
5047 <td class='DevStatusBox'> | |
5048 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5049 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5050 target="_blank"></a> | |
5051 </td> | |
5052 <td class='DevStatusBox'> | |
5053 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5054 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5055 target="_blank"></a> | |
5056 </td> | |
5057 <td class='DevStatusBox'> | |
5058 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5059 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5060 target="_blank"></a> | |
5061 </td> | |
5062 <td class='DevStatusBox'> | |
5063 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5064 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5065 target="_blank"></a> | |
5066 </td> | |
5067 <td class='DevStatusBox'> | |
5068 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5069 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
5070 target="_blank"></a> | |
5071 </td> | |
5072 <td class='DevStatusBox'> | |
5073 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5074 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
5075 target="_blank"></a> | |
5076 </td> | |
5077 <td class='DevStatusBox'> | |
5078 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5079 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
5080 target="_blank"></a> | |
5081 </td> | |
5082 <td class='DevStatusBox'> | |
5083 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
5084 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
5085 target="_blank"></a> | |
5086 </td> | |
5087 | |
5088 </tr> | |
5089 </table> | |
5090 </td> | |
5091 <td class='DevStatus '> | |
5092 <table width="100%"> | |
5093 <tr> | |
5094 <td class='DevStatusBox'> | |
5095 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
5096 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
5097 target="_blank"></a> | |
5098 </td> | |
5099 <td class='DevStatusBox'> | |
5100 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5101 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
5102 target="_blank"></a> | |
5103 </td> | |
5104 <td class='DevStatusBox'> | |
5105 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5106 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
5107 target="_blank"></a> | |
5108 </td> | |
5109 <td class='DevStatusBox'> | |
5110 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5111 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
5112 target="_blank"></a> | |
5113 </td> | |
5114 <td class='DevStatusBox'> | |
5115 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5116 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
5117 target="_blank"></a> | |
5118 </td> | |
5119 <td class='DevStatusBox'> | |
5120 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5121 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
5122 target="_blank"></a> | |
5123 </td> | |
5124 <td class='DevStatusBox'> | |
5125 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5126 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
5127 target="_blank"></a> | |
5128 </td> | |
5129 <td class='DevStatusBox'> | |
5130 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5131 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
5132 target="_blank"></a> | |
5133 </td> | |
5134 <td class='DevStatusBox'> | |
5135 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
5136 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
5137 target="_blank"></a> | |
5138 </td> | |
5139 <td class='DevStatusBox'> | |
5140 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5141 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5142 target="_blank"></a> | |
5143 </td> | |
5144 <td class='DevStatusBox'> | |
5145 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5146 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5147 target="_blank"></a> | |
5148 </td> | |
5149 <td class='DevStatusBox'> | |
5150 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5151 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5152 target="_blank"></a> | |
5153 </td> | |
5154 <td class='DevStatusBox'> | |
5155 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5156 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5157 target="_blank"></a> | |
5158 </td> | |
5159 <td class='DevStatusBox'> | |
5160 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5161 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5162 target="_blank"></a> | |
5163 </td> | |
5164 <td class='DevStatusBox'> | |
5165 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5166 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5167 target="_blank"></a> | |
5168 </td> | |
5169 <td class='DevStatusBox'> | |
5170 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5171 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5172 target="_blank"></a> | |
5173 </td> | |
5174 <td class='DevStatusBox'> | |
5175 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5176 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5177 target="_blank"></a> | |
5178 </td> | |
5179 | |
5180 </tr> | |
5181 </table> | |
5182 </td> | |
5183 <td class='DevStatus '> | |
5184 <table width="100%"> | |
5185 <tr> | |
5186 <td class='DevStatusBox'> | |
5187 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
5188 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
5189 target="_blank"></a> | |
5190 </td> | |
5191 <td class='DevStatusBox'> | |
5192 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5193 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
5194 target="_blank"></a> | |
5195 </td> | |
5196 <td class='DevStatusBox'> | |
5197 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5198 title='Linux Sync' class='DevStatusBox notstarted ' | |
5199 target="_blank"></a> | |
5200 </td> | |
5201 <td class='DevStatusBox'> | |
5202 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
5203 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
5204 target="_blank"></a> | |
5205 </td> | |
5206 <td class='DevStatusBox'> | |
5207 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5208 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5209 target="_blank"></a> | |
5210 </td> | |
5211 <td class='DevStatusBox'> | |
5212 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5213 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5214 target="_blank"></a> | |
5215 </td> | |
5216 <td class='DevStatusBox'> | |
5217 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
5218 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
5219 target="_blank"></a> | |
5220 </td> | |
5221 <td class='DevStatusBox'> | |
5222 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5223 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
5224 target="_blank"></a> | |
5225 </td> | |
5226 <td class='DevStatusBox'> | |
5227 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
5228 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
5229 target="_blank"></a> | |
5230 </td> | |
5231 | |
5232 </tr> | |
5233 </table> | |
5234 </td> | |
5235 <td class='DevStatus DevStatusCollapse'> | |
5236 <table width="100%"> | |
5237 <tr> | |
5238 <td class='DevStatusBox'> | |
5239 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
5240 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
5241 target="_blank"></a> | |
5242 </td> | |
5243 | |
5244 </tr> | |
5245 </table> | |
5246 </td> | |
5247 </tr> | |
5248 | |
5249 <tr> | |
5250 <td colspan="7" class='DevComment '> | |
5251 [cros] Adds OWNERS file for WebUI handlers directory<br/>BUG=none<br/>TEST
=none<br/><br/><br/>Review URL: http://codereview.chromium.org/9714001 | |
5252 </td> | |
5253 </tr> | |
5254 | |
5255 | |
5256 | |
5257 <tr class='DevStatusSpacing'> | |
5258 <td> | |
5259 </td> | |
5260 </tr> | |
5261 | |
5262 <tr> | |
5263 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
5264 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127224" t
arget="_blank">127224</a> | |
5265 </td> | |
5266 <td class='DevName Alt' width="1%"> | |
5267 erikwright<span style="display:none">ohnoyoudont</span>@chromium.org | |
5268 </td> | |
5269 | |
5270 <td class='DevStatus Alt '> | |
5271 <table width="100%"> | |
5272 <tr> | |
5273 <td class='DevStatusBox'> | |
5274 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5275 title='Win' class='DevStatusBox notstarted ' | |
5276 target="_blank"></a> | |
5277 </td> | |
5278 <td class='DevStatusBox'> | |
5279 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5280 title='Mac' class='DevStatusBox notstarted ' | |
5281 target="_blank"></a> | |
5282 </td> | |
5283 <td class='DevStatusBox'> | |
5284 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5285 title='Linux' class='DevStatusBox notstarted ' | |
5286 target="_blank"></a> | |
5287 </td> | |
5288 <td class='DevStatusBox'> | |
5289 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
5290 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
5291 target="_blank"></a> | |
5292 </td> | |
5293 | |
5294 </tr> | |
5295 </table> | |
5296 </td> | |
5297 <td class='DevStatus Alt '> | |
5298 <table width="100%"> | |
5299 <tr> | |
5300 <td class='DevStatusBox'> | |
5301 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
5302 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
5303 target="_blank"></a> | |
5304 </td> | |
5305 <td class='DevStatusBox'> | |
5306 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5307 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
5308 target="_blank"></a> | |
5309 </td> | |
5310 <td class='DevStatusBox'> | |
5311 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5312 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
5313 target="_blank"></a> | |
5314 </td> | |
5315 <td class='DevStatusBox'> | |
5316 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5317 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
5318 target="_blank"></a> | |
5319 </td> | |
5320 <td class='DevStatusBox'> | |
5321 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5322 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
5323 target="_blank"></a> | |
5324 </td> | |
5325 <td class='DevStatusBox'> | |
5326 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5327 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
5328 target="_blank"></a> | |
5329 </td> | |
5330 <td class='DevStatusBox'> | |
5331 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5332 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
5333 target="_blank"></a> | |
5334 </td> | |
5335 <td class='DevStatusBox'> | |
5336 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5337 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
5338 target="_blank"></a> | |
5339 </td> | |
5340 <td class='DevStatusBox'> | |
5341 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5342 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
5343 target="_blank"></a> | |
5344 </td> | |
5345 <td class='DevStatusBox'> | |
5346 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5347 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
5348 target="_blank"></a> | |
5349 </td> | |
5350 <td class='DevStatusBox'> | |
5351 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5352 title='Win7 Sync' class='DevStatusBox notstarted ' | |
5353 target="_blank"></a> | |
5354 </td> | |
5355 <td class='DevStatusBox'> | |
5356 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5357 title='NACL Tests' class='DevStatusBox notstarted ' | |
5358 target="_blank"></a> | |
5359 </td> | |
5360 <td class='DevStatusBox'> | |
5361 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5362 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
5363 target="_blank"></a> | |
5364 </td> | |
5365 <td class='DevStatusBox'> | |
5366 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5367 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
5368 target="_blank"></a> | |
5369 </td> | |
5370 <td class='DevStatusBox'> | |
5371 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5372 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
5373 target="_blank"></a> | |
5374 </td> | |
5375 <td class='DevStatusBox'> | |
5376 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5377 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
5378 target="_blank"></a> | |
5379 </td> | |
5380 <td class='DevStatusBox'> | |
5381 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
5382 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
5383 target="_blank"></a> | |
5384 </td> | |
5385 <td class='DevStatusBox'> | |
5386 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
5387 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
5388 target="_blank"></a> | |
5389 </td> | |
5390 <td class='DevStatusBox'> | |
5391 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5392 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5393 target="_blank"></a> | |
5394 </td> | |
5395 <td class='DevStatusBox'> | |
5396 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5397 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5398 target="_blank"></a> | |
5399 </td> | |
5400 <td class='DevStatusBox'> | |
5401 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5402 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5403 target="_blank"></a> | |
5404 </td> | |
5405 <td class='DevStatusBox'> | |
5406 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5407 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5408 target="_blank"></a> | |
5409 </td> | |
5410 <td class='DevStatusBox'> | |
5411 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5412 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
5413 target="_blank"></a> | |
5414 </td> | |
5415 <td class='DevStatusBox'> | |
5416 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5417 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
5418 target="_blank"></a> | |
5419 </td> | |
5420 <td class='DevStatusBox'> | |
5421 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5422 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5423 target="_blank"></a> | |
5424 </td> | |
5425 <td class='DevStatusBox'> | |
5426 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5427 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5428 target="_blank"></a> | |
5429 </td> | |
5430 <td class='DevStatusBox'> | |
5431 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5432 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5433 target="_blank"></a> | |
5434 </td> | |
5435 <td class='DevStatusBox'> | |
5436 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5437 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5438 target="_blank"></a> | |
5439 </td> | |
5440 <td class='DevStatusBox'> | |
5441 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5442 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
5443 target="_blank"></a> | |
5444 </td> | |
5445 <td class='DevStatusBox'> | |
5446 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5447 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
5448 target="_blank"></a> | |
5449 </td> | |
5450 <td class='DevStatusBox'> | |
5451 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5452 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
5453 target="_blank"></a> | |
5454 </td> | |
5455 <td class='DevStatusBox'> | |
5456 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
5457 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
5458 target="_blank"></a> | |
5459 </td> | |
5460 | |
5461 </tr> | |
5462 </table> | |
5463 </td> | |
5464 <td class='DevStatus Alt '> | |
5465 <table width="100%"> | |
5466 <tr> | |
5467 <td class='DevStatusBox'> | |
5468 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
5469 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
5470 target="_blank"></a> | |
5471 </td> | |
5472 <td class='DevStatusBox'> | |
5473 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5474 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
5475 target="_blank"></a> | |
5476 </td> | |
5477 <td class='DevStatusBox'> | |
5478 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5479 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
5480 target="_blank"></a> | |
5481 </td> | |
5482 <td class='DevStatusBox'> | |
5483 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5484 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
5485 target="_blank"></a> | |
5486 </td> | |
5487 <td class='DevStatusBox'> | |
5488 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5489 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
5490 target="_blank"></a> | |
5491 </td> | |
5492 <td class='DevStatusBox'> | |
5493 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5494 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
5495 target="_blank"></a> | |
5496 </td> | |
5497 <td class='DevStatusBox'> | |
5498 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5499 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
5500 target="_blank"></a> | |
5501 </td> | |
5502 <td class='DevStatusBox'> | |
5503 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5504 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
5505 target="_blank"></a> | |
5506 </td> | |
5507 <td class='DevStatusBox'> | |
5508 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
5509 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
5510 target="_blank"></a> | |
5511 </td> | |
5512 <td class='DevStatusBox'> | |
5513 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5514 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5515 target="_blank"></a> | |
5516 </td> | |
5517 <td class='DevStatusBox'> | |
5518 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5519 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5520 target="_blank"></a> | |
5521 </td> | |
5522 <td class='DevStatusBox'> | |
5523 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5524 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5525 target="_blank"></a> | |
5526 </td> | |
5527 <td class='DevStatusBox'> | |
5528 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5529 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5530 target="_blank"></a> | |
5531 </td> | |
5532 <td class='DevStatusBox'> | |
5533 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5534 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5535 target="_blank"></a> | |
5536 </td> | |
5537 <td class='DevStatusBox'> | |
5538 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5539 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5540 target="_blank"></a> | |
5541 </td> | |
5542 <td class='DevStatusBox'> | |
5543 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5544 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5545 target="_blank"></a> | |
5546 </td> | |
5547 <td class='DevStatusBox'> | |
5548 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5549 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5550 target="_blank"></a> | |
5551 </td> | |
5552 | |
5553 </tr> | |
5554 </table> | |
5555 </td> | |
5556 <td class='DevStatus Alt '> | |
5557 <table width="100%"> | |
5558 <tr> | |
5559 <td class='DevStatusBox'> | |
5560 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
5561 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
5562 target="_blank"></a> | |
5563 </td> | |
5564 <td class='DevStatusBox'> | |
5565 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5566 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
5567 target="_blank"></a> | |
5568 </td> | |
5569 <td class='DevStatusBox'> | |
5570 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5571 title='Linux Sync' class='DevStatusBox notstarted ' | |
5572 target="_blank"></a> | |
5573 </td> | |
5574 <td class='DevStatusBox'> | |
5575 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
5576 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
5577 target="_blank"></a> | |
5578 </td> | |
5579 <td class='DevStatusBox'> | |
5580 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5581 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5582 target="_blank"></a> | |
5583 </td> | |
5584 <td class='DevStatusBox'> | |
5585 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5586 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5587 target="_blank"></a> | |
5588 </td> | |
5589 <td class='DevStatusBox'> | |
5590 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
5591 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
5592 target="_blank"></a> | |
5593 </td> | |
5594 <td class='DevStatusBox'> | |
5595 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5596 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
5597 target="_blank"></a> | |
5598 </td> | |
5599 <td class='DevStatusBox'> | |
5600 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
5601 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
5602 target="_blank"></a> | |
5603 </td> | |
5604 | |
5605 </tr> | |
5606 </table> | |
5607 </td> | |
5608 <td class='DevStatus Alt DevStatusCollapse'> | |
5609 <table width="100%"> | |
5610 <tr> | |
5611 <td class='DevStatusBox'> | |
5612 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
5613 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
5614 target="_blank"></a> | |
5615 </td> | |
5616 | |
5617 </tr> | |
5618 </table> | |
5619 </td> | |
5620 </tr> | |
5621 | |
5622 <tr> | |
5623 <td colspan="7" class='DevComment Alt'> | |
5624 Define a meta-target for the win_cf bot.<br/><br/>BUG=None<br/>TEST=None<b
r/><br/><br/>Review URL: http://codereview.chromium.org/9699122 | |
5625 </td> | |
5626 </tr> | |
5627 | |
5628 | |
5629 | |
5630 <tr class='DevStatusSpacing'> | |
5631 <td> | |
5632 </td> | |
5633 </tr> | |
5634 | |
5635 <tr> | |
5636 <td class='DevRev DevRevCollapse' width="1%"> | |
5637 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127223" t
arget="_blank">127223</a> | |
5638 </td> | |
5639 <td class='DevName ' width="1%"> | |
5640 wez<span style="display:none">ohnoyoudont</span>@chromium.org | |
5641 </td> | |
5642 | |
5643 <td class='DevStatus '> | |
5644 <table width="100%"> | |
5645 <tr> | |
5646 <td class='DevStatusBox'> | |
5647 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5648 title='Win' class='DevStatusBox notstarted ' | |
5649 target="_blank"></a> | |
5650 </td> | |
5651 <td class='DevStatusBox'> | |
5652 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5653 title='Mac' class='DevStatusBox notstarted ' | |
5654 target="_blank"></a> | |
5655 </td> | |
5656 <td class='DevStatusBox'> | |
5657 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5658 title='Linux' class='DevStatusBox notstarted ' | |
5659 target="_blank"></a> | |
5660 </td> | |
5661 <td class='DevStatusBox'> | |
5662 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25051", event); return false;' | |
5663 title='Linux x64 ETA: 264s' class='DevStatusBox running TagLinux
x6425051' | |
5664 target="_blank"></a> | |
5665 </td> | |
5666 | |
5667 </tr> | |
5668 </table> | |
5669 </td> | |
5670 <td class='DevStatus '> | |
5671 <table width="100%"> | |
5672 <tr> | |
5673 <td class='DevStatusBox'> | |
5674 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25926", event); return false;' | |
5675 title='Win Builder ETA: 344s' class='DevStatusBox running TagWin
Builder25926' | |
5676 target="_blank"></a> | |
5677 </td> | |
5678 <td class='DevStatusBox'> | |
5679 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5680 title='XP Tests (1)' class='DevStatusBox notstarted ' | |
5681 target="_blank"></a> | |
5682 </td> | |
5683 <td class='DevStatusBox'> | |
5684 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5685 title='XP Tests (2)' class='DevStatusBox notstarted ' | |
5686 target="_blank"></a> | |
5687 </td> | |
5688 <td class='DevStatusBox'> | |
5689 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5690 title='XP Tests (3)' class='DevStatusBox notstarted ' | |
5691 target="_blank"></a> | |
5692 </td> | |
5693 <td class='DevStatusBox'> | |
5694 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5695 title='Vista Tests (1)' class='DevStatusBox notstarted ' | |
5696 target="_blank"></a> | |
5697 </td> | |
5698 <td class='DevStatusBox'> | |
5699 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5700 title='Vista Tests (2)' class='DevStatusBox notstarted ' | |
5701 target="_blank"></a> | |
5702 </td> | |
5703 <td class='DevStatusBox'> | |
5704 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5705 title='Vista Tests (3)' class='DevStatusBox notstarted ' | |
5706 target="_blank"></a> | |
5707 </td> | |
5708 <td class='DevStatusBox'> | |
5709 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5710 title='Win7 Tests (1)' class='DevStatusBox notstarted ' | |
5711 target="_blank"></a> | |
5712 </td> | |
5713 <td class='DevStatusBox'> | |
5714 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5715 title='Win7 Tests (2)' class='DevStatusBox notstarted ' | |
5716 target="_blank"></a> | |
5717 </td> | |
5718 <td class='DevStatusBox'> | |
5719 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5720 title='Win7 Tests (3)' class='DevStatusBox notstarted ' | |
5721 target="_blank"></a> | |
5722 </td> | |
5723 <td class='DevStatusBox'> | |
5724 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5725 title='Win7 Sync' class='DevStatusBox notstarted ' | |
5726 target="_blank"></a> | |
5727 </td> | |
5728 <td class='DevStatusBox'> | |
5729 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5730 title='NACL Tests' class='DevStatusBox notstarted ' | |
5731 target="_blank"></a> | |
5732 </td> | |
5733 <td class='DevStatusBox'> | |
5734 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5735 title='NACL Tests (x64)' class='DevStatusBox notstarted ' | |
5736 target="_blank"></a> | |
5737 </td> | |
5738 <td class='DevStatusBox'> | |
5739 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5740 title='Chrome Frame Tests (ie6)' class='DevStatusBox notstarted ' | |
5741 target="_blank"></a> | |
5742 </td> | |
5743 <td class='DevStatusBox'> | |
5744 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5745 title='Chrome Frame Tests (ie7)' class='DevStatusBox notstarted ' | |
5746 target="_blank"></a> | |
5747 </td> | |
5748 <td class='DevStatusBox'> | |
5749 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5750 title='Chrome Frame Tests (ie8)' class='DevStatusBox notstarted ' | |
5751 target="_blank"></a> | |
5752 </td> | |
5753 <td class='DevStatusBox'> | |
5754 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17646", event); return false;' | |
5755 title='Win Builder 2010 (dbg) ETA: 512s' class='DevStatusBox run
ning TagWinBuilder2010dbg17646' | |
5756 target="_blank"></a> | |
5757 </td> | |
5758 <td class='DevStatusBox'> | |
5759 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27234", event); return false;' | |
5760 title='Win Builder (dbg) ETA: 346s' class='DevStatusBox running
TagWinBuilderdbg27234' | |
5761 target="_blank"></a> | |
5762 </td> | |
5763 <td class='DevStatusBox'> | |
5764 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5765 title='XP Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5766 target="_blank"></a> | |
5767 </td> | |
5768 <td class='DevStatusBox'> | |
5769 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5770 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5771 target="_blank"></a> | |
5772 </td> | |
5773 <td class='DevStatusBox'> | |
5774 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5775 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5776 target="_blank"></a> | |
5777 </td> | |
5778 <td class='DevStatusBox'> | |
5779 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5780 title='XP Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5781 target="_blank"></a> | |
5782 </td> | |
5783 <td class='DevStatusBox'> | |
5784 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5785 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
5786 target="_blank"></a> | |
5787 </td> | |
5788 <td class='DevStatusBox'> | |
5789 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5790 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
5791 target="_blank"></a> | |
5792 </td> | |
5793 <td class='DevStatusBox'> | |
5794 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5795 title='Win7 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5796 target="_blank"></a> | |
5797 </td> | |
5798 <td class='DevStatusBox'> | |
5799 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5800 title='Win7 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5801 target="_blank"></a> | |
5802 </td> | |
5803 <td class='DevStatusBox'> | |
5804 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5805 title='Win7 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5806 target="_blank"></a> | |
5807 </td> | |
5808 <td class='DevStatusBox'> | |
5809 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5810 title='Win7 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5811 target="_blank"></a> | |
5812 </td> | |
5813 <td class='DevStatusBox'> | |
5814 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5815 title='Win7 Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
5816 target="_blank"></a> | |
5817 </td> | |
5818 <td class='DevStatusBox'> | |
5819 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5820 title='Win7 Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
5821 target="_blank"></a> | |
5822 </td> | |
5823 <td class='DevStatusBox'> | |
5824 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5825 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
5826 target="_blank"></a> | |
5827 </td> | |
5828 <td class='DevStatusBox'> | |
5829 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8001", event); return false;' | |
5830 title='Win Aura ETA: 192s' class='DevStatusBox running TagWinAur
a8001' | |
5831 target="_blank"></a> | |
5832 </td> | |
5833 | |
5834 </tr> | |
5835 </table> | |
5836 </td> | |
5837 <td class='DevStatus '> | |
5838 <table width="100%"> | |
5839 <tr> | |
5840 <td class='DevStatusBox'> | |
5841 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33138", event); return false;' | |
5842 title='Mac Builder ETA: 218s' class='DevStatusBox running TagMac
Builder33138' | |
5843 target="_blank"></a> | |
5844 </td> | |
5845 <td class='DevStatusBox'> | |
5846 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5847 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
5848 target="_blank"></a> | |
5849 </td> | |
5850 <td class='DevStatusBox'> | |
5851 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5852 title='Mac10.5 Tests (2)' class='DevStatusBox notstarted ' | |
5853 target="_blank"></a> | |
5854 </td> | |
5855 <td class='DevStatusBox'> | |
5856 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5857 title='Mac10.5 Tests (3)' class='DevStatusBox notstarted ' | |
5858 target="_blank"></a> | |
5859 </td> | |
5860 <td class='DevStatusBox'> | |
5861 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5862 title='Mac10.6 Tests (1)' class='DevStatusBox notstarted ' | |
5863 target="_blank"></a> | |
5864 </td> | |
5865 <td class='DevStatusBox'> | |
5866 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5867 title='Mac10.6 Tests (2)' class='DevStatusBox notstarted ' | |
5868 target="_blank"></a> | |
5869 </td> | |
5870 <td class='DevStatusBox'> | |
5871 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5872 title='Mac10.6 Tests (3)' class='DevStatusBox notstarted ' | |
5873 target="_blank"></a> | |
5874 </td> | |
5875 <td class='DevStatusBox'> | |
5876 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5877 title='Mac10.6 Sync' class='DevStatusBox notstarted ' | |
5878 target="_blank"></a> | |
5879 </td> | |
5880 <td class='DevStatusBox'> | |
5881 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17640", event); return false;' | |
5882 title='Mac Builder (dbg) ETA: 415s' class='DevStatusBox running
TagMacBuilderdbg17640' | |
5883 target="_blank"></a> | |
5884 </td> | |
5885 <td class='DevStatusBox'> | |
5886 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5887 title='Mac 10.5 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5888 target="_blank"></a> | |
5889 </td> | |
5890 <td class='DevStatusBox'> | |
5891 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5892 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5893 target="_blank"></a> | |
5894 </td> | |
5895 <td class='DevStatusBox'> | |
5896 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5897 title='Mac 10.5 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5898 target="_blank"></a> | |
5899 </td> | |
5900 <td class='DevStatusBox'> | |
5901 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5902 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5903 target="_blank"></a> | |
5904 </td> | |
5905 <td class='DevStatusBox'> | |
5906 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5907 title='Mac 10.6 Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5908 target="_blank"></a> | |
5909 </td> | |
5910 <td class='DevStatusBox'> | |
5911 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5912 title='Mac 10.6 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5913 target="_blank"></a> | |
5914 </td> | |
5915 <td class='DevStatusBox'> | |
5916 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5917 title='Mac 10.6 Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
5918 target="_blank"></a> | |
5919 </td> | |
5920 <td class='DevStatusBox'> | |
5921 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5922 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
5923 target="_blank"></a> | |
5924 </td> | |
5925 | |
5926 </tr> | |
5927 </table> | |
5928 </td> | |
5929 <td class='DevStatus '> | |
5930 <table width="100%"> | |
5931 <tr> | |
5932 <td class='DevStatusBox'> | |
5933 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38951", event); return false;' | |
5934 title='Linux Builder x64 ETA: 60s' class='DevStatusBox running T
agLinuxBuilderx6438951' | |
5935 target="_blank"></a> | |
5936 </td> | |
5937 <td class='DevStatusBox'> | |
5938 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5939 title='Linux Tests x64' class='DevStatusBox notstarted ' | |
5940 target="_blank"></a> | |
5941 </td> | |
5942 <td class='DevStatusBox'> | |
5943 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5944 title='Linux Sync' class='DevStatusBox notstarted ' | |
5945 target="_blank"></a> | |
5946 </td> | |
5947 <td class='DevStatusBox'> | |
5948 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23434", event); return false;' | |
5949 title='Linux Builder (dbg) ETA: 853s' class='DevStatusBox runnin
g TagLinuxBuilderdbg23434' | |
5950 target="_blank"></a> | |
5951 </td> | |
5952 <td class='DevStatusBox'> | |
5953 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5954 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
5955 target="_blank"></a> | |
5956 </td> | |
5957 <td class='DevStatusBox'> | |
5958 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5959 title='Linux Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
5960 target="_blank"></a> | |
5961 </td> | |
5962 <td class='DevStatusBox'> | |
5963 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20278", event); return false;' | |
5964 title='Linux Builder (dbg)(shared) ETA: 143s' class='DevStatusBo
x running TagLinuxBuilderdbgshared20278' | |
5965 target="_blank"></a> | |
5966 </td> | |
5967 <td class='DevStatusBox'> | |
5968 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
5969 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
5970 target="_blank"></a> | |
5971 </td> | |
5972 <td class='DevStatusBox'> | |
5973 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22076", event); return false;' | |
5974 title='Linux Clang (dbg) ETA: 343s' class='DevStatusBox running
TagLinuxClangdbg22076' | |
5975 target="_blank"></a> | |
5976 </td> | |
5977 | |
5978 </tr> | |
5979 </table> | |
5980 </td> | |
5981 <td class='DevStatus DevStatusCollapse'> | |
5982 <table width="100%"> | |
5983 <tr> | |
5984 <td class='DevStatusBox'> | |
5985 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2895", event); return false;' | |
5986 title='Android Builder ETA: 0s' class='DevStatusBox running TagA
ndroidBuilder2895' | |
5987 target="_blank"></a> | |
5988 </td> | |
5989 | |
5990 </tr> | |
5991 </table> | |
5992 </td> | |
5993 </tr> | |
5994 | |
5995 <tr> | |
5996 <td colspan="7" class='DevComment '> | |
5997 Check explicitly for PPB_VarArrayBuffer v1.0 in C++ wrapper.<br/><br/>BUG=
107398<br/><br/><br/>Review URL: http://codereview.chromium.org/9701090 | |
5998 </td> | |
5999 </tr> | |
6000 | |
6001 | |
6002 | |
6003 <tr class='DevStatusSpacing'> | |
6004 <td> | |
6005 </td> | |
6006 </tr> | |
6007 | |
6008 <tr> | |
6009 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
6010 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127222" t
arget="_blank">127222</a> | |
6011 </td> | |
6012 <td class='DevName Alt' width="1%"> | |
6013 anantha<span style="display:none">ohnoyoudont</span>@chromium.org | |
6014 </td> | |
6015 | |
6016 <td class='DevStatus Alt '> | |
6017 <table width="100%"> | |
6018 <tr> | |
6019 <td class='DevStatusBox'> | |
6020 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9952", event); return false;' | |
6021 title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' | |
6022 target="_blank"></a> | |
6023 </td> | |
6024 <td class='DevStatusBox'> | |
6025 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6026 title='Mac' class='DevStatusBox notstarted ' | |
6027 target="_blank"></a> | |
6028 </td> | |
6029 <td class='DevStatusBox'> | |
6030 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21369", event); return false;' | |
6031 title='Linux ETA: 1278s' class='DevStatusBox running TagLinux213
69' | |
6032 target="_blank"></a> | |
6033 </td> | |
6034 <td class='DevStatusBox'> | |
6035 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25050", event); return false;' | |
6036 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425050' | |
6037 target="_blank"></a> | |
6038 </td> | |
6039 | |
6040 </tr> | |
6041 </table> | |
6042 </td> | |
6043 <td class='DevStatus Alt '> | |
6044 <table width="100%"> | |
6045 <tr> | |
6046 <td class='DevStatusBox'> | |
6047 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25925", event); return false;' | |
6048 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25925' | |
6049 target="_blank"></a> | |
6050 </td> | |
6051 <td class='DevStatusBox'> | |
6052 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13555", event); return false;' | |
6053 title='XP Tests (1) ETA: 568s' class='DevStatusBox running TagXP
Tests113555' | |
6054 target="_blank"></a> | |
6055 </td> | |
6056 <td class='DevStatusBox'> | |
6057 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13224", event); return false;' | |
6058 title='XP Tests (2) ETA: 805s' class='DevStatusBox running TagXP
Tests213224' | |
6059 target="_blank"></a> | |
6060 </td> | |
6061 <td class='DevStatusBox'> | |
6062 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10082", event); return false;' | |
6063 title='XP Tests (3) ETA: 1579s' class='DevStatusBox running TagX
PTests310082' | |
6064 target="_blank"></a> | |
6065 </td> | |
6066 <td class='DevStatusBox'> | |
6067 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17521", event); return false;' | |
6068 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117521' | |
6069 target="_blank"></a> | |
6070 </td> | |
6071 <td class='DevStatusBox'> | |
6072 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16405", event); return false;' | |
6073 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216405' | |
6074 target="_blank"></a> | |
6075 </td> | |
6076 <td class='DevStatusBox'> | |
6077 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12819", event); return false;' | |
6078 title='Vista Tests (3) ETA: 249s' class='DevStatusBox running Ta
gVistaTests312819' | |
6079 target="_blank"></a> | |
6080 </td> | |
6081 <td class='DevStatusBox'> | |
6082 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4897", event); return false;' | |
6083 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14897' | |
6084 target="_blank"></a> | |
6085 </td> | |
6086 <td class='DevStatusBox'> | |
6087 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4296", event); return false;' | |
6088 title='Win7 Tests (2) ETA: 663s' class='DevStatusBox running Tag
Win7Tests24296' | |
6089 target="_blank"></a> | |
6090 </td> | |
6091 <td class='DevStatusBox'> | |
6092 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4309", event); return false;' | |
6093 title='Win7 Tests (3) ETA: 324s' class='DevStatusBox running Tag
Win7Tests34309' | |
6094 target="_blank"></a> | |
6095 </td> | |
6096 <td class='DevStatusBox'> | |
6097 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17782", event); return false;' | |
6098 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17782' | |
6099 target="_blank"></a> | |
6100 </td> | |
6101 <td class='DevStatusBox'> | |
6102 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23389", event); return false;' | |
6103 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23389' | |
6104 target="_blank"></a> | |
6105 </td> | |
6106 <td class='DevStatusBox'> | |
6107 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26304", event); return false;' | |
6108 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426304' | |
6109 target="_blank"></a> | |
6110 </td> | |
6111 <td class='DevStatusBox'> | |
6112 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23589", event); return false;' | |
6113 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623589' | |
6114 target="_blank"></a> | |
6115 </td> | |
6116 <td class='DevStatusBox'> | |
6117 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24940", event); return false;' | |
6118 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724940' | |
6119 target="_blank"></a> | |
6120 </td> | |
6121 <td class='DevStatusBox'> | |
6122 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24374", event); return false;' | |
6123 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824374' | |
6124 target="_blank"></a> | |
6125 </td> | |
6126 <td class='DevStatusBox'> | |
6127 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17645", event); return false;' | |
6128 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17645' | |
6129 target="_blank"></a> | |
6130 </td> | |
6131 <td class='DevStatusBox'> | |
6132 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27233", event); return false;' | |
6133 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27233' | |
6134 target="_blank"></a> | |
6135 </td> | |
6136 <td class='DevStatusBox'> | |
6137 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19605", event); return false;' | |
6138 title='XP Tests (dbg)(1) ETA: 419s' class='DevStatusBox running
TagXPTestsdbg119605' | |
6139 target="_blank"></a> | |
6140 </td> | |
6141 <td class='DevStatusBox'> | |
6142 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6143 title='XP Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
6144 target="_blank"></a> | |
6145 </td> | |
6146 <td class='DevStatusBox'> | |
6147 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6148 title='XP Tests (dbg)(3)' class='DevStatusBox notstarted ' | |
6149 target="_blank"></a> | |
6150 </td> | |
6151 <td class='DevStatusBox'> | |
6152 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14472", event); return false;' | |
6153 title='XP Tests (dbg)(4) ETA: 3924s' class='DevStatusBox running
TagXPTestsdbg414472' | |
6154 target="_blank"></a> | |
6155 </td> | |
6156 <td class='DevStatusBox'> | |
6157 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6158 title='XP Tests (dbg)(5)' class='DevStatusBox notstarted ' | |
6159 target="_blank"></a> | |
6160 </td> | |
6161 <td class='DevStatusBox'> | |
6162 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6163 title='XP Tests (dbg)(6)' class='DevStatusBox notstarted ' | |
6164 target="_blank"></a> | |
6165 </td> | |
6166 <td class='DevStatusBox'> | |
6167 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4964", event); return false;' | |
6168 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14964' | |
6169 target="_blank"></a> | |
6170 </td> | |
6171 <td class='DevStatusBox'> | |
6172 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3588", event); return false;' | |
6173 title='Win7 Tests (dbg)(2) ETA: 1378s' class='DevStatusBox runni
ng TagWin7Testsdbg23588' | |
6174 target="_blank"></a> | |
6175 </td> | |
6176 <td class='DevStatusBox'> | |
6177 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3846", event); return false;' | |
6178 title='Win7 Tests (dbg)(3) ETA: 863s' class='DevStatusBox runnin
g TagWin7Testsdbg33846' | |
6179 target="_blank"></a> | |
6180 </td> | |
6181 <td class='DevStatusBox'> | |
6182 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3872", event); return false;' | |
6183 title='Win7 Tests (dbg)(4) ETA: 1446s' class='DevStatusBox runni
ng TagWin7Testsdbg43872' | |
6184 target="_blank"></a> | |
6185 </td> | |
6186 <td class='DevStatusBox'> | |
6187 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3864", event); return false;' | |
6188 title='Win7 Tests (dbg)(5) ETA: 1355s' class='DevStatusBox runni
ng TagWin7Testsdbg53864' | |
6189 target="_blank"></a> | |
6190 </td> | |
6191 <td class='DevStatusBox'> | |
6192 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3891", event); return false;' | |
6193 title='Win7 Tests (dbg)(6) ETA: 919s' class='DevStatusBox runnin
g TagWin7Testsdbg63891' | |
6194 target="_blank"></a> | |
6195 </td> | |
6196 <td class='DevStatusBox'> | |
6197 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6198 title='Interactive Tests (dbg)' class='DevStatusBox notstarted ' | |
6199 target="_blank"></a> | |
6200 </td> | |
6201 <td class='DevStatusBox'> | |
6202 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=8000", event); return false;' | |
6203 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura8000' | |
6204 target="_blank"></a> | |
6205 </td> | |
6206 | |
6207 </tr> | |
6208 </table> | |
6209 </td> | |
6210 <td class='DevStatus Alt '> | |
6211 <table width="100%"> | |
6212 <tr> | |
6213 <td class='DevStatusBox'> | |
6214 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33137", event); return false;' | |
6215 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33137' | |
6216 target="_blank"></a> | |
6217 </td> | |
6218 <td class='DevStatusBox'> | |
6219 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6220 title='Mac10.5 Tests (1)' class='DevStatusBox notstarted ' | |
6221 target="_blank"></a> | |
6222 </td> | |
6223 <td class='DevStatusBox'> | |
6224 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13824", event); return false;' | |
6225 title='Mac10.5 Tests (2) ETA: 442s' class='DevStatusBox running
TagMac105Tests213824' | |
6226 target="_blank"></a> | |
6227 </td> | |
6228 <td class='DevStatusBox'> | |
6229 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10231", event); return false;' | |
6230 title='Mac10.5 Tests (3) ETA: 829s' class='DevStatusBox running
TagMac105Tests310231' | |
6231 target="_blank"></a> | |
6232 </td> | |
6233 <td class='DevStatusBox'> | |
6234 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18426", event); return false;' | |
6235 title='Mac10.6 Tests (1) ETA: 1838s' class='DevStatusBox running
TagMac106Tests118426' | |
6236 target="_blank"></a> | |
6237 </td> | |
6238 <td class='DevStatusBox'> | |
6239 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14330", event); return false;' | |
6240 title='Mac10.6 Tests (2) ETA: 235s' class='DevStatusBox running
TagMac106Tests214330' | |
6241 target="_blank"></a> | |
6242 </td> | |
6243 <td class='DevStatusBox'> | |
6244 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11469", event); return false;' | |
6245 title='Mac10.6 Tests (3) ETA: 1141s' class='DevStatusBox running
TagMac106Tests311469' | |
6246 target="_blank"></a> | |
6247 </td> | |
6248 <td class='DevStatusBox'> | |
6249 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15141", event); return false;' | |
6250 title='Mac10.6 Sync ETA: 194s' class='DevStatusBox running TagMa
c106Sync15141' | |
6251 target="_blank"></a> | |
6252 </td> | |
6253 <td class='DevStatusBox'> | |
6254 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17639", event); return false;' | |
6255 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17639' | |
6256 target="_blank"></a> | |
6257 </td> | |
6258 <td class='DevStatusBox'> | |
6259 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16570", event); return false;' | |
6260 title='Mac 10.5 Tests (dbg)(1) ETA: 2698s' class='DevStatusBox r
unning TagMac105Testsdbg116570' | |
6261 target="_blank"></a> | |
6262 </td> | |
6263 <td class='DevStatusBox'> | |
6264 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6265 title='Mac 10.5 Tests (dbg)(2)' class='DevStatusBox notstarted ' | |
6266 target="_blank"></a> | |
6267 </td> | |
6268 <td class='DevStatusBox'> | |
6269 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16184", event); return false;' | |
6270 title='Mac 10.5 Tests (dbg)(3) ETA: 1550s' class='DevStatusBox r
unning TagMac105Testsdbg316184' | |
6271 target="_blank"></a> | |
6272 </td> | |
6273 <td class='DevStatusBox'> | |
6274 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6275 title='Mac 10.5 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
6276 target="_blank"></a> | |
6277 </td> | |
6278 <td class='DevStatusBox'> | |
6279 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19179", event); return false;' | |
6280 title='Mac 10.6 Tests (dbg)(1) ETA: 2505s' class='DevStatusBox r
unning TagMac106Testsdbg119179' | |
6281 target="_blank"></a> | |
6282 </td> | |
6283 <td class='DevStatusBox'> | |
6284 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18494", event); return false;' | |
6285 title='Mac 10.6 Tests (dbg)(2) ETA: 1219s' class='DevStatusBox r
unning TagMac106Testsdbg218494' | |
6286 target="_blank"></a> | |
6287 </td> | |
6288 <td class='DevStatusBox'> | |
6289 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17464", event); return false;' | |
6290 title='Mac 10.6 Tests (dbg)(3) ETA: 2459s' class='DevStatusBox r
unning TagMac106Testsdbg317464' | |
6291 target="_blank"></a> | |
6292 </td> | |
6293 <td class='DevStatusBox'> | |
6294 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6295 title='Mac 10.6 Tests (dbg)(4)' class='DevStatusBox notstarted ' | |
6296 target="_blank"></a> | |
6297 </td> | |
6298 | |
6299 </tr> | |
6300 </table> | |
6301 </td> | |
6302 <td class='DevStatus Alt '> | |
6303 <table width="100%"> | |
6304 <tr> | |
6305 <td class='DevStatusBox'> | |
6306 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38950", event); return false;' | |
6307 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438950' | |
6308 target="_blank"></a> | |
6309 </td> | |
6310 <td class='DevStatusBox'> | |
6311 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19238", event); return false;' | |
6312 title='Linux Tests x64 ETA: 1567s' class='DevStatusBox running T
agLinuxTestsx6419238' | |
6313 target="_blank"></a> | |
6314 </td> | |
6315 <td class='DevStatusBox'> | |
6316 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20265", event); return false;' | |
6317 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20265' | |
6318 target="_blank"></a> | |
6319 </td> | |
6320 <td class='DevStatusBox'> | |
6321 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23433", event); return false;' | |
6322 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23433' | |
6323 target="_blank"></a> | |
6324 </td> | |
6325 <td class='DevStatusBox'> | |
6326 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6327 title='Linux Tests (dbg)(1)' class='DevStatusBox notstarted ' | |
6328 target="_blank"></a> | |
6329 </td> | |
6330 <td class='DevStatusBox'> | |
6331 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18451", event); return false;' | |
6332 title='Linux Tests (dbg)(2) ETA: 1153s' class='DevStatusBox runn
ing TagLinuxTestsdbg218451' | |
6333 target="_blank"></a> | |
6334 </td> | |
6335 <td class='DevStatusBox'> | |
6336 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20277", event); return false;' | |
6337 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20277' | |
6338 target="_blank"></a> | |
6339 </td> | |
6340 <td class='DevStatusBox'> | |
6341 <a href='#' onclick='showBuildBox("./waterfall", event); return fals
e;' | |
6342 title='Linux Tests (dbg)(shared)' class='DevStatusBox notstarted
' | |
6343 target="_blank"></a> | |
6344 </td> | |
6345 <td class='DevStatusBox'> | |
6346 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22075", event); return false;' | |
6347 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22075' | |
6348 target="_blank"></a> | |
6349 </td> | |
6350 | |
6351 </tr> | |
6352 </table> | |
6353 </td> | |
6354 <td class='DevStatus Alt DevStatusCollapse'> | |
6355 <table width="100%"> | |
6356 <tr> | |
6357 <td class='DevStatusBox'> | |
6358 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2894", event); return false;' | |
6359 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2894' | |
6360 target="_blank"></a> | |
6361 </td> | |
6362 | |
6363 </tr> | |
6364 </table> | |
6365 </td> | |
6366 </tr> | |
6367 | |
6368 <tr> | |
6369 <td colspan="7" class='DevComment Alt'> | |
6370 Disabling special_tabs.SpecialTabsTest.testSpecialURLTabs, which was enabl
ed only on Linux. This is failing on main pyauto waterfall also. <br/>Bug
=118474<br/>Review URL: https://chromiumcodereview.appspot.com/9705115 | |
6371 </td> | |
6372 </tr> | |
6373 | |
6374 | |
6375 | |
6376 <tr class='DevStatusSpacing'> | |
6377 <td> | |
6378 </td> | |
6379 </tr> | |
6380 | |
6381 <tr> | |
6382 <td class='DevRev DevRevCollapse' width="1%"> | |
6383 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127220" t
arget="_blank">127220</a> | |
6384 </td> | |
6385 <td class='DevName ' width="1%"> | |
6386 tbreisacher<span style="display:none">ohnoyoudont</span>@chromium.org | |
6387 </td> | |
6388 | |
6389 <td class='DevStatus '> | |
6390 <table width="100%"> | |
6391 <tr> | |
6392 <td class='DevStatusBox'> | |
6393 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9952", event); return false;' | |
6394 title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' | |
6395 target="_blank"></a> | |
6396 </td> | |
6397 <td class='DevStatusBox'> | |
6398 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12581", event); return false;' | |
6399 title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' | |
6400 target="_blank"></a> | |
6401 </td> | |
6402 <td class='DevStatusBox'> | |
6403 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21368", event); return false;' | |
6404 title='Linux build successful' class='DevStatusBox success TagLin
ux21368' | |
6405 target="_blank"></a> | |
6406 </td> | |
6407 <td class='DevStatusBox'> | |
6408 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25049", event); return false;' | |
6409 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425049' | |
6410 target="_blank"></a> | |
6411 </td> | |
6412 | |
6413 </tr> | |
6414 </table> | |
6415 </td> | |
6416 <td class='DevStatus '> | |
6417 <table width="100%"> | |
6418 <tr> | |
6419 <td class='DevStatusBox'> | |
6420 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25924", event); return false;' | |
6421 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25924' | |
6422 target="_blank"></a> | |
6423 </td> | |
6424 <td class='DevStatusBox'> | |
6425 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13554", event); return false;' | |
6426 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113554' | |
6427 target="_blank"></a> | |
6428 </td> | |
6429 <td class='DevStatusBox'> | |
6430 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13223", event); return false;' | |
6431 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213223' | |
6432 target="_blank"></a> | |
6433 </td> | |
6434 <td class='DevStatusBox'> | |
6435 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10081", event); return false;' | |
6436 title='XP Tests (3) failed browser_tests' class='DevStatusBox fai
lure TagXPTests310081' | |
6437 target="_blank"></a> | |
6438 </td> | |
6439 <td class='DevStatusBox'> | |
6440 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17520", event); return false;' | |
6441 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117520' | |
6442 target="_blank"></a> | |
6443 </td> | |
6444 <td class='DevStatusBox'> | |
6445 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16404", event); return false;' | |
6446 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216404' | |
6447 target="_blank"></a> | |
6448 </td> | |
6449 <td class='DevStatusBox'> | |
6450 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12818", event); return false;' | |
6451 title='Vista Tests (3) failed browser_tests' class='DevStatusBox
failure TagVistaTests312818' | |
6452 target="_blank"></a> | |
6453 </td> | |
6454 <td class='DevStatusBox'> | |
6455 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4896", event); return false;' | |
6456 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14896' | |
6457 target="_blank"></a> | |
6458 </td> | |
6459 <td class='DevStatusBox'> | |
6460 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4295", event); return false;' | |
6461 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24295' | |
6462 target="_blank"></a> | |
6463 </td> | |
6464 <td class='DevStatusBox'> | |
6465 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4308", event); return false;' | |
6466 title='Win7 Tests (3) build successful' class='DevStatusBox succe
ss TagWin7Tests34308' | |
6467 target="_blank"></a> | |
6468 </td> | |
6469 <td class='DevStatusBox'> | |
6470 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17781", event); return false;' | |
6471 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17781' | |
6472 target="_blank"></a> | |
6473 </td> | |
6474 <td class='DevStatusBox'> | |
6475 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23388", event); return false;' | |
6476 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23388' | |
6477 target="_blank"></a> | |
6478 </td> | |
6479 <td class='DevStatusBox'> | |
6480 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26303", event); return false;' | |
6481 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426303' | |
6482 target="_blank"></a> | |
6483 </td> | |
6484 <td class='DevStatusBox'> | |
6485 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23588", event); return false;' | |
6486 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623588' | |
6487 target="_blank"></a> | |
6488 </td> | |
6489 <td class='DevStatusBox'> | |
6490 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24939", event); return false;' | |
6491 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724939' | |
6492 target="_blank"></a> | |
6493 </td> | |
6494 <td class='DevStatusBox'> | |
6495 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24373", event); return false;' | |
6496 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824373' | |
6497 target="_blank"></a> | |
6498 </td> | |
6499 <td class='DevStatusBox'> | |
6500 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17644", event); return false;' | |
6501 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17644' | |
6502 target="_blank"></a> | |
6503 </td> | |
6504 <td class='DevStatusBox'> | |
6505 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27232", event); return false;' | |
6506 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27232' | |
6507 target="_blank"></a> | |
6508 </td> | |
6509 <td class='DevStatusBox'> | |
6510 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19604", event); return false;' | |
6511 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119604' | |
6512 target="_blank"></a> | |
6513 </td> | |
6514 <td class='DevStatusBox'> | |
6515 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14551", event); return false;' | |
6516 title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running
TagXPTestsdbg214551' | |
6517 target="_blank"></a> | |
6518 </td> | |
6519 <td class='DevStatusBox'> | |
6520 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15771", event); return false;' | |
6521 title='XP Tests (dbg)(3) ETA: 2494s' class='DevStatusBox running
TagXPTestsdbg315771' | |
6522 target="_blank"></a> | |
6523 </td> | |
6524 <td class='DevStatusBox'> | |
6525 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14472", event); return false;' | |
6526 title='XP Tests (dbg)(4) ETA: 3924s' class='DevStatusBox running
TagXPTestsdbg414472' | |
6527 target="_blank"></a> | |
6528 </td> | |
6529 <td class='DevStatusBox'> | |
6530 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12207", event); return false;' | |
6531 title='XP Tests (dbg)(5) ETA: 2027s' class='DevStatusBox running
TagXPTestsdbg512207' | |
6532 target="_blank"></a> | |
6533 </td> | |
6534 <td class='DevStatusBox'> | |
6535 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9109", event); return false;' | |
6536 title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running T
agXPTestsdbg69109' | |
6537 target="_blank"></a> | |
6538 </td> | |
6539 <td class='DevStatusBox'> | |
6540 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4963", event); return false;' | |
6541 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14963' | |
6542 target="_blank"></a> | |
6543 </td> | |
6544 <td class='DevStatusBox'> | |
6545 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3587", event); return false;' | |
6546 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23587' | |
6547 target="_blank"></a> | |
6548 </td> | |
6549 <td class='DevStatusBox'> | |
6550 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3845", event); return false;' | |
6551 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33845' | |
6552 target="_blank"></a> | |
6553 </td> | |
6554 <td class='DevStatusBox'> | |
6555 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3871", event); return false;' | |
6556 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43871' | |
6557 target="_blank"></a> | |
6558 </td> | |
6559 <td class='DevStatusBox'> | |
6560 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3863", event); return false;' | |
6561 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53863' | |
6562 target="_blank"></a> | |
6563 </td> | |
6564 <td class='DevStatusBox'> | |
6565 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3890", event); return false;' | |
6566 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63890' | |
6567 target="_blank"></a> | |
6568 </td> | |
6569 <td class='DevStatusBox'> | |
6570 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21449", event); return false;' | |
6571 title='Interactive Tests (dbg) ETA: 1923s' class='DevStatusBox r
unning TagInteractiveTestsdbg21449' | |
6572 target="_blank"></a> | |
6573 </td> | |
6574 <td class='DevStatusBox'> | |
6575 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7999", event); return false;' | |
6576 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7999' | |
6577 target="_blank"></a> | |
6578 </td> | |
6579 | |
6580 </tr> | |
6581 </table> | |
6582 </td> | |
6583 <td class='DevStatus '> | |
6584 <table width="100%"> | |
6585 <tr> | |
6586 <td class='DevStatusBox'> | |
6587 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33136", event); return false;' | |
6588 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33136' | |
6589 target="_blank"></a> | |
6590 </td> | |
6591 <td class='DevStatusBox'> | |
6592 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16786", event); return false;' | |
6593 title='Mac10.5 Tests (1) ETA: 721s' class='DevStatusBox running
TagMac105Tests116786' | |
6594 target="_blank"></a> | |
6595 </td> | |
6596 <td class='DevStatusBox'> | |
6597 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13823", event); return false;' | |
6598 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213823' | |
6599 target="_blank"></a> | |
6600 </td> | |
6601 <td class='DevStatusBox'> | |
6602 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10230", event); return false;' | |
6603 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310230' | |
6604 target="_blank"></a> | |
6605 </td> | |
6606 <td class='DevStatusBox'> | |
6607 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18425", event); return false;' | |
6608 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118425' | |
6609 target="_blank"></a> | |
6610 </td> | |
6611 <td class='DevStatusBox'> | |
6612 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14329", event); return false;' | |
6613 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214329' | |
6614 target="_blank"></a> | |
6615 </td> | |
6616 <td class='DevStatusBox'> | |
6617 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11468", event); return false;' | |
6618 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311468' | |
6619 target="_blank"></a> | |
6620 </td> | |
6621 <td class='DevStatusBox'> | |
6622 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15140", event); return false;' | |
6623 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15140' | |
6624 target="_blank"></a> | |
6625 </td> | |
6626 <td class='DevStatusBox'> | |
6627 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17638", event); return false;' | |
6628 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17638' | |
6629 target="_blank"></a> | |
6630 </td> | |
6631 <td class='DevStatusBox'> | |
6632 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16570", event); return false;' | |
6633 title='Mac 10.5 Tests (dbg)(1) ETA: 2698s' class='DevStatusBox r
unning TagMac105Testsdbg116570' | |
6634 target="_blank"></a> | |
6635 </td> | |
6636 <td class='DevStatusBox'> | |
6637 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16288", event); return false;' | |
6638 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216288' | |
6639 target="_blank"></a> | |
6640 </td> | |
6641 <td class='DevStatusBox'> | |
6642 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16183", event); return false;' | |
6643 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316183' | |
6644 target="_blank"></a> | |
6645 </td> | |
6646 <td class='DevStatusBox'> | |
6647 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7422", event); return false;' | |
6648 title='Mac 10.5 Tests (dbg)(4) ETA: 424s' class='DevStatusBox ru
nning TagMac105Testsdbg47422' | |
6649 target="_blank"></a> | |
6650 </td> | |
6651 <td class='DevStatusBox'> | |
6652 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19178", event); return false;' | |
6653 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119178' | |
6654 target="_blank"></a> | |
6655 </td> | |
6656 <td class='DevStatusBox'> | |
6657 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18493", event); return false;' | |
6658 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218493' | |
6659 target="_blank"></a> | |
6660 </td> | |
6661 <td class='DevStatusBox'> | |
6662 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17463", event); return false;' | |
6663 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317463' | |
6664 target="_blank"></a> | |
6665 </td> | |
6666 <td class='DevStatusBox'> | |
6667 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8493", event); return false;' | |
6668 title='Mac 10.6 Tests (dbg)(4) ETA: 25s' class='DevStatusBox run
ning TagMac106Testsdbg48493' | |
6669 target="_blank"></a> | |
6670 </td> | |
6671 | |
6672 </tr> | |
6673 </table> | |
6674 </td> | |
6675 <td class='DevStatus '> | |
6676 <table width="100%"> | |
6677 <tr> | |
6678 <td class='DevStatusBox'> | |
6679 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38949", event); return false;' | |
6680 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438949' | |
6681 target="_blank"></a> | |
6682 </td> | |
6683 <td class='DevStatusBox'> | |
6684 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19237", event); return false;' | |
6685 title='Linux Tests x64 build successful' class='DevStatusBox succ
ess TagLinuxTestsx6419237' | |
6686 target="_blank"></a> | |
6687 </td> | |
6688 <td class='DevStatusBox'> | |
6689 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20264", event); return false;' | |
6690 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20264' | |
6691 target="_blank"></a> | |
6692 </td> | |
6693 <td class='DevStatusBox'> | |
6694 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23432", event); return false;' | |
6695 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23432' | |
6696 target="_blank"></a> | |
6697 </td> | |
6698 <td class='DevStatusBox'> | |
6699 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15900", event); return false;' | |
6700 title='Linux Tests (dbg)(1) ETA: 2030s' class='DevStatusBox runn
ing TagLinuxTestsdbg115900' | |
6701 target="_blank"></a> | |
6702 </td> | |
6703 <td class='DevStatusBox'> | |
6704 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18450", event); return false;' | |
6705 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218450' | |
6706 target="_blank"></a> | |
6707 </td> | |
6708 <td class='DevStatusBox'> | |
6709 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20276", event); return false;' | |
6710 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20276' | |
6711 target="_blank"></a> | |
6712 </td> | |
6713 <td class='DevStatusBox'> | |
6714 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5716", event); return false;' | |
6715 title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox
running TagLinuxTestsdbgshared5716' | |
6716 target="_blank"></a> | |
6717 </td> | |
6718 <td class='DevStatusBox'> | |
6719 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22074", event); return false;' | |
6720 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22074' | |
6721 target="_blank"></a> | |
6722 </td> | |
6723 | |
6724 </tr> | |
6725 </table> | |
6726 </td> | |
6727 <td class='DevStatus DevStatusCollapse'> | |
6728 <table width="100%"> | |
6729 <tr> | |
6730 <td class='DevStatusBox'> | |
6731 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2893", event); return false;' | |
6732 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2893' | |
6733 target="_blank"></a> | |
6734 </td> | |
6735 | |
6736 </tr> | |
6737 </table> | |
6738 </td> | |
6739 </tr> | |
6740 | |
6741 <tr> | |
6742 <td colspan="7" class='DevComment '> | |
6743 Revert 127219 - Make test failure clearer<br/><br/>BUG=none<br/>TEST=Share
dMemoryProcessTest.Tasks<br/><br/>Review URL: https://chromiumcodereview.appspot
.com/9703126<br/><br/>TBR=tbreisacher@chromium.org<br/>Review URL: https://chrom
iumcodereview.appspot.com/9716002 | |
6744 </td> | |
6745 </tr> | |
6746 | |
6747 <tr> | |
6748 <td colspan="7" class='DevDetails '> | |
6749 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
6750 <li>XP Tests (3): browser_tests 2 flaky failed 1 Flakiness dashboa
rd - <a href="console/../builders/XP%20Tests%20%283%29/builds/10081/step
s/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/XP%20Test
s%20%283%29/builds/10081/steps/browser_tests/logs/FaviconChange"> FaviconChange
</a></li> | |
6751 <li>Vista Tests (3): browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Vista%20Tests%20%2
83%29/builds/12818/steps/browser_tests/logs/stdio"> stdio </a> - <a href="consol
e/../builders/Vista%20Tests%20%283%29/builds/12818/steps/browser_tests/logs/Unlo
adPageAction"> UnloadPageAction </a></li> | |
6752 </ul> | |
6753 </td> | |
6754 </tr> | |
6755 | |
6756 | |
6757 <tr class='DevStatusSpacing'> | |
6758 <td> | |
6759 </td> | |
6760 </tr> | |
6761 | |
6762 <tr> | |
6763 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
6764 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127219" t
arget="_blank">127219</a> | |
6765 </td> | |
6766 <td class='DevName Alt' width="1%"> | |
6767 tbreisacher<span style="display:none">ohnoyoudont</span>@chromium.org | |
6768 </td> | |
6769 | |
6770 <td class='DevStatus Alt '> | |
6771 <table width="100%"> | |
6772 <tr> | |
6773 <td class='DevStatusBox'> | |
6774 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9952", event); return false;' | |
6775 title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' | |
6776 target="_blank"></a> | |
6777 </td> | |
6778 <td class='DevStatusBox'> | |
6779 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12581", event); return false;' | |
6780 title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' | |
6781 target="_blank"></a> | |
6782 </td> | |
6783 <td class='DevStatusBox'> | |
6784 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21367", event); return false;' | |
6785 title='Linux build successful' class='DevStatusBox success TagLin
ux21367' | |
6786 target="_blank"></a> | |
6787 </td> | |
6788 <td class='DevStatusBox'> | |
6789 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25048", event); return false;' | |
6790 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425048' | |
6791 target="_blank"></a> | |
6792 </td> | |
6793 | |
6794 </tr> | |
6795 </table> | |
6796 </td> | |
6797 <td class='DevStatus Alt '> | |
6798 <table width="100%"> | |
6799 <tr> | |
6800 <td class='DevStatusBox'> | |
6801 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25923", event); return false;' | |
6802 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25923' | |
6803 target="_blank"></a> | |
6804 </td> | |
6805 <td class='DevStatusBox'> | |
6806 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13554", event); return false;' | |
6807 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113554' | |
6808 target="_blank"></a> | |
6809 </td> | |
6810 <td class='DevStatusBox'> | |
6811 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13223", event); return false;' | |
6812 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213223' | |
6813 target="_blank"></a> | |
6814 </td> | |
6815 <td class='DevStatusBox'> | |
6816 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10081", event); return false;' | |
6817 title='XP Tests (3) failed browser_tests' class='DevStatusBox fai
lure TagXPTests310081' | |
6818 target="_blank"></a> | |
6819 </td> | |
6820 <td class='DevStatusBox'> | |
6821 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17520", event); return false;' | |
6822 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117520' | |
6823 target="_blank"></a> | |
6824 </td> | |
6825 <td class='DevStatusBox'> | |
6826 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16403", event); return false;' | |
6827 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216403' | |
6828 target="_blank"></a> | |
6829 </td> | |
6830 <td class='DevStatusBox'> | |
6831 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12818", event); return false;' | |
6832 title='Vista Tests (3) failed browser_tests' class='DevStatusBox
failure TagVistaTests312818' | |
6833 target="_blank"></a> | |
6834 </td> | |
6835 <td class='DevStatusBox'> | |
6836 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4896", event); return false;' | |
6837 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14896' | |
6838 target="_blank"></a> | |
6839 </td> | |
6840 <td class='DevStatusBox'> | |
6841 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4295", event); return false;' | |
6842 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24295' | |
6843 target="_blank"></a> | |
6844 </td> | |
6845 <td class='DevStatusBox'> | |
6846 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4308", event); return false;' | |
6847 title='Win7 Tests (3) build successful' class='DevStatusBox succe
ss TagWin7Tests34308' | |
6848 target="_blank"></a> | |
6849 </td> | |
6850 <td class='DevStatusBox'> | |
6851 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17781", event); return false;' | |
6852 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17781' | |
6853 target="_blank"></a> | |
6854 </td> | |
6855 <td class='DevStatusBox'> | |
6856 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23387", event); return false;' | |
6857 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23387' | |
6858 target="_blank"></a> | |
6859 </td> | |
6860 <td class='DevStatusBox'> | |
6861 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26302", event); return false;' | |
6862 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426302' | |
6863 target="_blank"></a> | |
6864 </td> | |
6865 <td class='DevStatusBox'> | |
6866 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23587", event); return false;' | |
6867 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623587' | |
6868 target="_blank"></a> | |
6869 </td> | |
6870 <td class='DevStatusBox'> | |
6871 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24938", event); return false;' | |
6872 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724938' | |
6873 target="_blank"></a> | |
6874 </td> | |
6875 <td class='DevStatusBox'> | |
6876 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24372", event); return false;' | |
6877 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824372' | |
6878 target="_blank"></a> | |
6879 </td> | |
6880 <td class='DevStatusBox'> | |
6881 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17643", event); return false;' | |
6882 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17643' | |
6883 target="_blank"></a> | |
6884 </td> | |
6885 <td class='DevStatusBox'> | |
6886 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27231", event); return false;' | |
6887 title='Win Builder (dbg) failed compile' class='DevStatusBox fail
ure TagWinBuilderdbg27231' | |
6888 target="_blank"></a> | |
6889 </td> | |
6890 <td class='DevStatusBox'> | |
6891 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19604", event); return false;' | |
6892 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119604' | |
6893 target="_blank"></a> | |
6894 </td> | |
6895 <td class='DevStatusBox'> | |
6896 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14551", event); return false;' | |
6897 title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running
TagXPTestsdbg214551' | |
6898 target="_blank"></a> | |
6899 </td> | |
6900 <td class='DevStatusBox'> | |
6901 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15771", event); return false;' | |
6902 title='XP Tests (dbg)(3) ETA: 2494s' class='DevStatusBox running
TagXPTestsdbg315771' | |
6903 target="_blank"></a> | |
6904 </td> | |
6905 <td class='DevStatusBox'> | |
6906 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14472", event); return false;' | |
6907 title='XP Tests (dbg)(4) ETA: 3924s' class='DevStatusBox running
TagXPTestsdbg414472' | |
6908 target="_blank"></a> | |
6909 </td> | |
6910 <td class='DevStatusBox'> | |
6911 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12207", event); return false;' | |
6912 title='XP Tests (dbg)(5) ETA: 2027s' class='DevStatusBox running
TagXPTestsdbg512207' | |
6913 target="_blank"></a> | |
6914 </td> | |
6915 <td class='DevStatusBox'> | |
6916 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9109", event); return false;' | |
6917 title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running T
agXPTestsdbg69109' | |
6918 target="_blank"></a> | |
6919 </td> | |
6920 <td class='DevStatusBox'> | |
6921 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4963", event); return false;' | |
6922 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14963' | |
6923 target="_blank"></a> | |
6924 </td> | |
6925 <td class='DevStatusBox'> | |
6926 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3587", event); return false;' | |
6927 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23587' | |
6928 target="_blank"></a> | |
6929 </td> | |
6930 <td class='DevStatusBox'> | |
6931 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3845", event); return false;' | |
6932 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33845' | |
6933 target="_blank"></a> | |
6934 </td> | |
6935 <td class='DevStatusBox'> | |
6936 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3871", event); return false;' | |
6937 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43871' | |
6938 target="_blank"></a> | |
6939 </td> | |
6940 <td class='DevStatusBox'> | |
6941 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3863", event); return false;' | |
6942 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53863' | |
6943 target="_blank"></a> | |
6944 </td> | |
6945 <td class='DevStatusBox'> | |
6946 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3890", event); return false;' | |
6947 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63890' | |
6948 target="_blank"></a> | |
6949 </td> | |
6950 <td class='DevStatusBox'> | |
6951 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21449", event); return false;' | |
6952 title='Interactive Tests (dbg) ETA: 1923s' class='DevStatusBox r
unning TagInteractiveTestsdbg21449' | |
6953 target="_blank"></a> | |
6954 </td> | |
6955 <td class='DevStatusBox'> | |
6956 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7998", event); return false;' | |
6957 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7998' | |
6958 target="_blank"></a> | |
6959 </td> | |
6960 | |
6961 </tr> | |
6962 </table> | |
6963 </td> | |
6964 <td class='DevStatus Alt '> | |
6965 <table width="100%"> | |
6966 <tr> | |
6967 <td class='DevStatusBox'> | |
6968 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33135", event); return false;' | |
6969 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33135' | |
6970 target="_blank"></a> | |
6971 </td> | |
6972 <td class='DevStatusBox'> | |
6973 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16785", event); return false;' | |
6974 title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests116785' | |
6975 target="_blank"></a> | |
6976 </td> | |
6977 <td class='DevStatusBox'> | |
6978 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13823", event); return false;' | |
6979 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213823' | |
6980 target="_blank"></a> | |
6981 </td> | |
6982 <td class='DevStatusBox'> | |
6983 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10230", event); return false;' | |
6984 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310230' | |
6985 target="_blank"></a> | |
6986 </td> | |
6987 <td class='DevStatusBox'> | |
6988 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18424", event); return false;' | |
6989 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118424' | |
6990 target="_blank"></a> | |
6991 </td> | |
6992 <td class='DevStatusBox'> | |
6993 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14329", event); return false;' | |
6994 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214329' | |
6995 target="_blank"></a> | |
6996 </td> | |
6997 <td class='DevStatusBox'> | |
6998 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11467", event); return false;' | |
6999 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311467' | |
7000 target="_blank"></a> | |
7001 </td> | |
7002 <td class='DevStatusBox'> | |
7003 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15140", event); return false;' | |
7004 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15140' | |
7005 target="_blank"></a> | |
7006 </td> | |
7007 <td class='DevStatusBox'> | |
7008 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17637", event); return false;' | |
7009 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17637' | |
7010 target="_blank"></a> | |
7011 </td> | |
7012 <td class='DevStatusBox'> | |
7013 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16569", event); return false;' | |
7014 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116569' | |
7015 target="_blank"></a> | |
7016 </td> | |
7017 <td class='DevStatusBox'> | |
7018 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16288", event); return false;' | |
7019 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216288' | |
7020 target="_blank"></a> | |
7021 </td> | |
7022 <td class='DevStatusBox'> | |
7023 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16183", event); return false;' | |
7024 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316183' | |
7025 target="_blank"></a> | |
7026 </td> | |
7027 <td class='DevStatusBox'> | |
7028 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7422", event); return false;' | |
7029 title='Mac 10.5 Tests (dbg)(4) ETA: 424s' class='DevStatusBox ru
nning TagMac105Testsdbg47422' | |
7030 target="_blank"></a> | |
7031 </td> | |
7032 <td class='DevStatusBox'> | |
7033 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19178", event); return false;' | |
7034 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119178' | |
7035 target="_blank"></a> | |
7036 </td> | |
7037 <td class='DevStatusBox'> | |
7038 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18493", event); return false;' | |
7039 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218493' | |
7040 target="_blank"></a> | |
7041 </td> | |
7042 <td class='DevStatusBox'> | |
7043 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17463", event); return false;' | |
7044 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317463' | |
7045 target="_blank"></a> | |
7046 </td> | |
7047 <td class='DevStatusBox'> | |
7048 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8493", event); return false;' | |
7049 title='Mac 10.6 Tests (dbg)(4) ETA: 25s' class='DevStatusBox run
ning TagMac106Testsdbg48493' | |
7050 target="_blank"></a> | |
7051 </td> | |
7052 | |
7053 </tr> | |
7054 </table> | |
7055 </td> | |
7056 <td class='DevStatus Alt '> | |
7057 <table width="100%"> | |
7058 <tr> | |
7059 <td class='DevStatusBox'> | |
7060 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38948", event); return false;' | |
7061 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438948' | |
7062 target="_blank"></a> | |
7063 </td> | |
7064 <td class='DevStatusBox'> | |
7065 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19236", event); return false;' | |
7066 title='Linux Tests x64 failed browser_tests' class='DevStatusBox
failure TagLinuxTestsx6419236' | |
7067 target="_blank"></a> | |
7068 </td> | |
7069 <td class='DevStatusBox'> | |
7070 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20263", event); return false;' | |
7071 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20263' | |
7072 target="_blank"></a> | |
7073 </td> | |
7074 <td class='DevStatusBox'> | |
7075 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23431", event); return false;' | |
7076 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23431' | |
7077 target="_blank"></a> | |
7078 </td> | |
7079 <td class='DevStatusBox'> | |
7080 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15900", event); return false;' | |
7081 title='Linux Tests (dbg)(1) ETA: 2030s' class='DevStatusBox runn
ing TagLinuxTestsdbg115900' | |
7082 target="_blank"></a> | |
7083 </td> | |
7084 <td class='DevStatusBox'> | |
7085 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18449", event); return false;' | |
7086 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218449' | |
7087 target="_blank"></a> | |
7088 </td> | |
7089 <td class='DevStatusBox'> | |
7090 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20275", event); return false;' | |
7091 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20275' | |
7092 target="_blank"></a> | |
7093 </td> | |
7094 <td class='DevStatusBox'> | |
7095 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5716", event); return false;' | |
7096 title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox
running TagLinuxTestsdbgshared5716' | |
7097 target="_blank"></a> | |
7098 </td> | |
7099 <td class='DevStatusBox'> | |
7100 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22073", event); return false;' | |
7101 title='Linux Clang (dbg) failed content_unittests' class='DevStat
usBox failure TagLinuxClangdbg22073' | |
7102 target="_blank"></a> | |
7103 </td> | |
7104 | |
7105 </tr> | |
7106 </table> | |
7107 </td> | |
7108 <td class='DevStatus Alt DevStatusCollapse'> | |
7109 <table width="100%"> | |
7110 <tr> | |
7111 <td class='DevStatusBox'> | |
7112 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2892", event); return false;' | |
7113 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2892' | |
7114 target="_blank"></a> | |
7115 </td> | |
7116 | |
7117 </tr> | |
7118 </table> | |
7119 </td> | |
7120 </tr> | |
7121 | |
7122 <tr> | |
7123 <td colspan="7" class='DevComment Alt'> | |
7124 Make test failure clearer<br/><br/>BUG=none<br/>TEST=SharedMemoryProcessTe
st.Tasks<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9703126 | |
7125 </td> | |
7126 </tr> | |
7127 | |
7128 <tr> | |
7129 <td colspan="7" class='DevDetails Alt'> | |
7130 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
7131 <li>XP Tests (3): browser_tests 2 flaky failed 1 Flakiness dashboa
rd - <a href="console/../builders/XP%20Tests%20%283%29/builds/10081/step
s/browser_tests/logs/stdio"> stdio </a> - <a href="console/../builders/XP%20Test
s%20%283%29/builds/10081/steps/browser_tests/logs/FaviconChange"> FaviconChange
</a></li> | |
7132 <li>Vista Tests (3): browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Vista%20Tests%20%2
83%29/builds/12818/steps/browser_tests/logs/stdio"> stdio </a> - <a href="consol
e/../builders/Vista%20Tests%20%283%29/builds/12818/steps/browser_tests/logs/Unlo
adPageAction"> UnloadPageAction </a></li> | |
7133 <li>Win Builder (dbg): compile failed - <a href="console/../bu
ilders/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%20B
uilder%20%28dbg%29/builds/27231/steps/compile/logs/base_unittests%20-%204093%20e
rror%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> | |
7134 <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="co
nsole/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/log
s/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> | |
7135 <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x6
4/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/..
/builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAc
tion"> UnloadPageAction </a></li> | |
7136 <li>Linux Clang (dbg): content_unittests 18 disabled failed 1 - &nbs
p;<a href="console/../builders/Linux%20Clang%20%28dbg%29/builds/22073/steps/cont
ent_unittests/logs/stdio"> stdio </a> - <a href="console/../builders/Linux%20Cla
ng%20%28dbg%29/builds/22073/steps/content_unittests/logs/MultiDevicesOneMountPoi
nt"> MultiDevicesOneMountPoint </a></li> | |
7137 </ul> | |
7138 </td> | |
7139 </tr> | |
7140 | |
7141 | |
7142 <tr class='DevStatusSpacing'> | |
7143 <td> | |
7144 </td> | |
7145 </tr> | |
7146 | |
7147 <tr> | |
7148 <td class='DevRev DevRevCollapse' width="1%"> | |
7149 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127218" t
arget="_blank">127218</a> | |
7150 </td> | |
7151 <td class='DevName ' width="1%"> | |
7152 rohitbm<span style="display:none">ohnoyoudont</span>@chromium.org | |
7153 </td> | |
7154 | |
7155 <td class='DevStatus '> | |
7156 <table width="100%"> | |
7157 <tr> | |
7158 <td class='DevStatusBox'> | |
7159 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9952", event); return false;' | |
7160 title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' | |
7161 target="_blank"></a> | |
7162 </td> | |
7163 <td class='DevStatusBox'> | |
7164 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12581", event); return false;' | |
7165 title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' | |
7166 target="_blank"></a> | |
7167 </td> | |
7168 <td class='DevStatusBox'> | |
7169 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21367", event); return false;' | |
7170 title='Linux build successful' class='DevStatusBox success TagLin
ux21367' | |
7171 target="_blank"></a> | |
7172 </td> | |
7173 <td class='DevStatusBox'> | |
7174 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25047", event); return false;' | |
7175 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425047' | |
7176 target="_blank"></a> | |
7177 </td> | |
7178 | |
7179 </tr> | |
7180 </table> | |
7181 </td> | |
7182 <td class='DevStatus '> | |
7183 <table width="100%"> | |
7184 <tr> | |
7185 <td class='DevStatusBox'> | |
7186 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25922", event); return false;' | |
7187 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25922' | |
7188 target="_blank"></a> | |
7189 </td> | |
7190 <td class='DevStatusBox'> | |
7191 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13553", event); return false;' | |
7192 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113553' | |
7193 target="_blank"></a> | |
7194 </td> | |
7195 <td class='DevStatusBox'> | |
7196 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13222", event); return false;' | |
7197 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213222' | |
7198 target="_blank"></a> | |
7199 </td> | |
7200 <td class='DevStatusBox'> | |
7201 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10080", event); return false;' | |
7202 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310080' | |
7203 target="_blank"></a> | |
7204 </td> | |
7205 <td class='DevStatusBox'> | |
7206 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17519", event); return false;' | |
7207 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117519' | |
7208 target="_blank"></a> | |
7209 </td> | |
7210 <td class='DevStatusBox'> | |
7211 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16402", event); return false;' | |
7212 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216402' | |
7213 target="_blank"></a> | |
7214 </td> | |
7215 <td class='DevStatusBox'> | |
7216 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12817", event); return false;' | |
7217 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312817' | |
7218 target="_blank"></a> | |
7219 </td> | |
7220 <td class='DevStatusBox'> | |
7221 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4895", event); return false;' | |
7222 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14895' | |
7223 target="_blank"></a> | |
7224 </td> | |
7225 <td class='DevStatusBox'> | |
7226 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4294", event); return false;' | |
7227 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24294' | |
7228 target="_blank"></a> | |
7229 </td> | |
7230 <td class='DevStatusBox'> | |
7231 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4307", event); return false;' | |
7232 title='Win7 Tests (3) failed browser_tests' class='DevStatusBox f
ailure TagWin7Tests34307' | |
7233 target="_blank"></a> | |
7234 </td> | |
7235 <td class='DevStatusBox'> | |
7236 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17780", event); return false;' | |
7237 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17780' | |
7238 target="_blank"></a> | |
7239 </td> | |
7240 <td class='DevStatusBox'> | |
7241 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23386", event); return false;' | |
7242 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23386' | |
7243 target="_blank"></a> | |
7244 </td> | |
7245 <td class='DevStatusBox'> | |
7246 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26301", event); return false;' | |
7247 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426301' | |
7248 target="_blank"></a> | |
7249 </td> | |
7250 <td class='DevStatusBox'> | |
7251 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23586", event); return false;' | |
7252 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623586' | |
7253 target="_blank"></a> | |
7254 </td> | |
7255 <td class='DevStatusBox'> | |
7256 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24937", event); return false;' | |
7257 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724937' | |
7258 target="_blank"></a> | |
7259 </td> | |
7260 <td class='DevStatusBox'> | |
7261 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24371", event); return false;' | |
7262 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824371' | |
7263 target="_blank"></a> | |
7264 </td> | |
7265 <td class='DevStatusBox'> | |
7266 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17642", event); return false;' | |
7267 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17642' | |
7268 target="_blank"></a> | |
7269 </td> | |
7270 <td class='DevStatusBox'> | |
7271 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27230", event); return false;' | |
7272 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27230' | |
7273 target="_blank"></a> | |
7274 </td> | |
7275 <td class='DevStatusBox'> | |
7276 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19603", event); return false;' | |
7277 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119603' | |
7278 target="_blank"></a> | |
7279 </td> | |
7280 <td class='DevStatusBox'> | |
7281 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14551", event); return false;' | |
7282 title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running
TagXPTestsdbg214551' | |
7283 target="_blank"></a> | |
7284 </td> | |
7285 <td class='DevStatusBox'> | |
7286 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
7287 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
7288 target="_blank"></a> | |
7289 </td> | |
7290 <td class='DevStatusBox'> | |
7291 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14471", event); return false;' | |
7292 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414471' | |
7293 target="_blank"></a> | |
7294 </td> | |
7295 <td class='DevStatusBox'> | |
7296 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
7297 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
7298 target="_blank"></a> | |
7299 </td> | |
7300 <td class='DevStatusBox'> | |
7301 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9109", event); return false;' | |
7302 title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running T
agXPTestsdbg69109' | |
7303 target="_blank"></a> | |
7304 </td> | |
7305 <td class='DevStatusBox'> | |
7306 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4962", event); return false;' | |
7307 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14962' | |
7308 target="_blank"></a> | |
7309 </td> | |
7310 <td class='DevStatusBox'> | |
7311 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3587", event); return false;' | |
7312 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23587' | |
7313 target="_blank"></a> | |
7314 </td> | |
7315 <td class='DevStatusBox'> | |
7316 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3845", event); return false;' | |
7317 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33845' | |
7318 target="_blank"></a> | |
7319 </td> | |
7320 <td class='DevStatusBox'> | |
7321 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3870", event); return false;' | |
7322 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43870' | |
7323 target="_blank"></a> | |
7324 </td> | |
7325 <td class='DevStatusBox'> | |
7326 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3862", event); return false;' | |
7327 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53862' | |
7328 target="_blank"></a> | |
7329 </td> | |
7330 <td class='DevStatusBox'> | |
7331 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3890", event); return false;' | |
7332 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63890' | |
7333 target="_blank"></a> | |
7334 </td> | |
7335 <td class='DevStatusBox'> | |
7336 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21448", event); return false;' | |
7337 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox warnings TagInteractiveTestsdbg21448' | |
7338 target="_blank"></a> | |
7339 </td> | |
7340 <td class='DevStatusBox'> | |
7341 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7997", event); return false;' | |
7342 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7997' | |
7343 target="_blank"></a> | |
7344 </td> | |
7345 | |
7346 </tr> | |
7347 </table> | |
7348 </td> | |
7349 <td class='DevStatus '> | |
7350 <table width="100%"> | |
7351 <tr> | |
7352 <td class='DevStatusBox'> | |
7353 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33134", event); return false;' | |
7354 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33134' | |
7355 target="_blank"></a> | |
7356 </td> | |
7357 <td class='DevStatusBox'> | |
7358 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16785", event); return false;' | |
7359 title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests116785' | |
7360 target="_blank"></a> | |
7361 </td> | |
7362 <td class='DevStatusBox'> | |
7363 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13822", event); return false;' | |
7364 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213822' | |
7365 target="_blank"></a> | |
7366 </td> | |
7367 <td class='DevStatusBox'> | |
7368 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10229", event); return false;' | |
7369 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310229' | |
7370 target="_blank"></a> | |
7371 </td> | |
7372 <td class='DevStatusBox'> | |
7373 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18424", event); return false;' | |
7374 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118424' | |
7375 target="_blank"></a> | |
7376 </td> | |
7377 <td class='DevStatusBox'> | |
7378 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14328", event); return false;' | |
7379 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214328' | |
7380 target="_blank"></a> | |
7381 </td> | |
7382 <td class='DevStatusBox'> | |
7383 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11466", event); return false;' | |
7384 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311466' | |
7385 target="_blank"></a> | |
7386 </td> | |
7387 <td class='DevStatusBox'> | |
7388 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15139", event); return false;' | |
7389 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15139' | |
7390 target="_blank"></a> | |
7391 </td> | |
7392 <td class='DevStatusBox'> | |
7393 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17636", event); return false;' | |
7394 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17636' | |
7395 target="_blank"></a> | |
7396 </td> | |
7397 <td class='DevStatusBox'> | |
7398 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16569", event); return false;' | |
7399 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116569' | |
7400 target="_blank"></a> | |
7401 </td> | |
7402 <td class='DevStatusBox'> | |
7403 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
7404 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
7405 target="_blank"></a> | |
7406 </td> | |
7407 <td class='DevStatusBox'> | |
7408 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16183", event); return false;' | |
7409 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316183' | |
7410 target="_blank"></a> | |
7411 </td> | |
7412 <td class='DevStatusBox'> | |
7413 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
7414 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
7415 target="_blank"></a> | |
7416 </td> | |
7417 <td class='DevStatusBox'> | |
7418 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
7419 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
7420 target="_blank"></a> | |
7421 </td> | |
7422 <td class='DevStatusBox'> | |
7423 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18493", event); return false;' | |
7424 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218493' | |
7425 target="_blank"></a> | |
7426 </td> | |
7427 <td class='DevStatusBox'> | |
7428 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
7429 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
7430 target="_blank"></a> | |
7431 </td> | |
7432 <td class='DevStatusBox'> | |
7433 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8492", event); return false;' | |
7434 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48492' | |
7435 target="_blank"></a> | |
7436 </td> | |
7437 | |
7438 </tr> | |
7439 </table> | |
7440 </td> | |
7441 <td class='DevStatus '> | |
7442 <table width="100%"> | |
7443 <tr> | |
7444 <td class='DevStatusBox'> | |
7445 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38947", event); return false;' | |
7446 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438947' | |
7447 target="_blank"></a> | |
7448 </td> | |
7449 <td class='DevStatusBox'> | |
7450 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19236", event); return false;' | |
7451 title='Linux Tests x64 failed browser_tests' class='DevStatusBox
failure TagLinuxTestsx6419236' | |
7452 target="_blank"></a> | |
7453 </td> | |
7454 <td class='DevStatusBox'> | |
7455 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20262", event); return false;' | |
7456 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20262' | |
7457 target="_blank"></a> | |
7458 </td> | |
7459 <td class='DevStatusBox'> | |
7460 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23430", event); return false;' | |
7461 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23430' | |
7462 target="_blank"></a> | |
7463 </td> | |
7464 <td class='DevStatusBox'> | |
7465 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
7466 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
7467 target="_blank"></a> | |
7468 </td> | |
7469 <td class='DevStatusBox'> | |
7470 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18448", event); return false;' | |
7471 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218448' | |
7472 target="_blank"></a> | |
7473 </td> | |
7474 <td class='DevStatusBox'> | |
7475 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20274", event); return false;' | |
7476 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20274' | |
7477 target="_blank"></a> | |
7478 </td> | |
7479 <td class='DevStatusBox'> | |
7480 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5716", event); return false;' | |
7481 title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox
running TagLinuxTestsdbgshared5716' | |
7482 target="_blank"></a> | |
7483 </td> | |
7484 <td class='DevStatusBox'> | |
7485 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22072", event); return false;' | |
7486 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22072' | |
7487 target="_blank"></a> | |
7488 </td> | |
7489 | |
7490 </tr> | |
7491 </table> | |
7492 </td> | |
7493 <td class='DevStatus DevStatusCollapse'> | |
7494 <table width="100%"> | |
7495 <tr> | |
7496 <td class='DevStatusBox'> | |
7497 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2891", event); return false;' | |
7498 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2891' | |
7499 target="_blank"></a> | |
7500 </td> | |
7501 | |
7502 </tr> | |
7503 </table> | |
7504 </td> | |
7505 </tr> | |
7506 | |
7507 <tr> | |
7508 <td colspan="7" class='DevComment '> | |
7509 Netflix plugin 1.5.2 is working on all boards, so enabling Netflix perf te
sts.<br/>Review URL: https://chromiumcodereview.appspot.com/9714002 | |
7510 </td> | |
7511 </tr> | |
7512 | |
7513 <tr> | |
7514 <td colspan="7" class='DevDetails '> | |
7515 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
7516 <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/UnloadPag
eAction"> UnloadPageAction </a></li> | |
7517 <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="co
nsole/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/log
s/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> | |
7518 <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x6
4/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/..
/builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAc
tion"> UnloadPageAction </a></li> | |
7519 </ul> | |
7520 </td> | |
7521 </tr> | |
7522 | |
7523 | |
7524 <tr class='DevStatusSpacing'> | |
7525 <td> | |
7526 </td> | |
7527 </tr> | |
7528 | |
7529 <tr> | |
7530 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
7531 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127217" t
arget="_blank">127217</a> | |
7532 </td> | |
7533 <td class='DevName Alt' width="1%"> | |
7534 fischman<span style="display:none">ohnoyoudont</span>@chromium.org | |
7535 </td> | |
7536 | |
7537 <td class='DevStatus Alt '> | |
7538 <table width="100%"> | |
7539 <tr> | |
7540 <td class='DevStatusBox'> | |
7541 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9952", event); return false;' | |
7542 title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' | |
7543 target="_blank"></a> | |
7544 </td> | |
7545 <td class='DevStatusBox'> | |
7546 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12581", event); return false;' | |
7547 title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' | |
7548 target="_blank"></a> | |
7549 </td> | |
7550 <td class='DevStatusBox'> | |
7551 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21367", event); return false;' | |
7552 title='Linux build successful' class='DevStatusBox success TagLin
ux21367' | |
7553 target="_blank"></a> | |
7554 </td> | |
7555 <td class='DevStatusBox'> | |
7556 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25047", event); return false;' | |
7557 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425047' | |
7558 target="_blank"></a> | |
7559 </td> | |
7560 | |
7561 </tr> | |
7562 </table> | |
7563 </td> | |
7564 <td class='DevStatus Alt '> | |
7565 <table width="100%"> | |
7566 <tr> | |
7567 <td class='DevStatusBox'> | |
7568 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25922", event); return false;' | |
7569 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25922' | |
7570 target="_blank"></a> | |
7571 </td> | |
7572 <td class='DevStatusBox'> | |
7573 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13553", event); return false;' | |
7574 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113553' | |
7575 target="_blank"></a> | |
7576 </td> | |
7577 <td class='DevStatusBox'> | |
7578 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13222", event); return false;' | |
7579 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213222' | |
7580 target="_blank"></a> | |
7581 </td> | |
7582 <td class='DevStatusBox'> | |
7583 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10080", event); return false;' | |
7584 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310080' | |
7585 target="_blank"></a> | |
7586 </td> | |
7587 <td class='DevStatusBox'> | |
7588 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17519", event); return false;' | |
7589 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117519' | |
7590 target="_blank"></a> | |
7591 </td> | |
7592 <td class='DevStatusBox'> | |
7593 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16402", event); return false;' | |
7594 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216402' | |
7595 target="_blank"></a> | |
7596 </td> | |
7597 <td class='DevStatusBox'> | |
7598 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12817", event); return false;' | |
7599 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312817' | |
7600 target="_blank"></a> | |
7601 </td> | |
7602 <td class='DevStatusBox'> | |
7603 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4895", event); return false;' | |
7604 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14895' | |
7605 target="_blank"></a> | |
7606 </td> | |
7607 <td class='DevStatusBox'> | |
7608 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4294", event); return false;' | |
7609 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24294' | |
7610 target="_blank"></a> | |
7611 </td> | |
7612 <td class='DevStatusBox'> | |
7613 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4307", event); return false;' | |
7614 title='Win7 Tests (3) failed browser_tests' class='DevStatusBox f
ailure TagWin7Tests34307' | |
7615 target="_blank"></a> | |
7616 </td> | |
7617 <td class='DevStatusBox'> | |
7618 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17780", event); return false;' | |
7619 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17780' | |
7620 target="_blank"></a> | |
7621 </td> | |
7622 <td class='DevStatusBox'> | |
7623 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23386", event); return false;' | |
7624 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23386' | |
7625 target="_blank"></a> | |
7626 </td> | |
7627 <td class='DevStatusBox'> | |
7628 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26301", event); return false;' | |
7629 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426301' | |
7630 target="_blank"></a> | |
7631 </td> | |
7632 <td class='DevStatusBox'> | |
7633 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23586", event); return false;' | |
7634 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623586' | |
7635 target="_blank"></a> | |
7636 </td> | |
7637 <td class='DevStatusBox'> | |
7638 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24937", event); return false;' | |
7639 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724937' | |
7640 target="_blank"></a> | |
7641 </td> | |
7642 <td class='DevStatusBox'> | |
7643 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24371", event); return false;' | |
7644 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824371' | |
7645 target="_blank"></a> | |
7646 </td> | |
7647 <td class='DevStatusBox'> | |
7648 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17642", event); return false;' | |
7649 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17642' | |
7650 target="_blank"></a> | |
7651 </td> | |
7652 <td class='DevStatusBox'> | |
7653 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27230", event); return false;' | |
7654 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27230' | |
7655 target="_blank"></a> | |
7656 </td> | |
7657 <td class='DevStatusBox'> | |
7658 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19603", event); return false;' | |
7659 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119603' | |
7660 target="_blank"></a> | |
7661 </td> | |
7662 <td class='DevStatusBox'> | |
7663 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14551", event); return false;' | |
7664 title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running
TagXPTestsdbg214551' | |
7665 target="_blank"></a> | |
7666 </td> | |
7667 <td class='DevStatusBox'> | |
7668 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
7669 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
7670 target="_blank"></a> | |
7671 </td> | |
7672 <td class='DevStatusBox'> | |
7673 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14471", event); return false;' | |
7674 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414471' | |
7675 target="_blank"></a> | |
7676 </td> | |
7677 <td class='DevStatusBox'> | |
7678 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
7679 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
7680 target="_blank"></a> | |
7681 </td> | |
7682 <td class='DevStatusBox'> | |
7683 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9109", event); return false;' | |
7684 title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running T
agXPTestsdbg69109' | |
7685 target="_blank"></a> | |
7686 </td> | |
7687 <td class='DevStatusBox'> | |
7688 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4962", event); return false;' | |
7689 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14962' | |
7690 target="_blank"></a> | |
7691 </td> | |
7692 <td class='DevStatusBox'> | |
7693 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3587", event); return false;' | |
7694 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23587' | |
7695 target="_blank"></a> | |
7696 </td> | |
7697 <td class='DevStatusBox'> | |
7698 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3845", event); return false;' | |
7699 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33845' | |
7700 target="_blank"></a> | |
7701 </td> | |
7702 <td class='DevStatusBox'> | |
7703 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3870", event); return false;' | |
7704 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43870' | |
7705 target="_blank"></a> | |
7706 </td> | |
7707 <td class='DevStatusBox'> | |
7708 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3862", event); return false;' | |
7709 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53862' | |
7710 target="_blank"></a> | |
7711 </td> | |
7712 <td class='DevStatusBox'> | |
7713 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3890", event); return false;' | |
7714 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63890' | |
7715 target="_blank"></a> | |
7716 </td> | |
7717 <td class='DevStatusBox'> | |
7718 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21448", event); return false;' | |
7719 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox warnings TagInteractiveTestsdbg21448' | |
7720 target="_blank"></a> | |
7721 </td> | |
7722 <td class='DevStatusBox'> | |
7723 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7997", event); return false;' | |
7724 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7997' | |
7725 target="_blank"></a> | |
7726 </td> | |
7727 | |
7728 </tr> | |
7729 </table> | |
7730 </td> | |
7731 <td class='DevStatus Alt '> | |
7732 <table width="100%"> | |
7733 <tr> | |
7734 <td class='DevStatusBox'> | |
7735 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33134", event); return false;' | |
7736 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33134' | |
7737 target="_blank"></a> | |
7738 </td> | |
7739 <td class='DevStatusBox'> | |
7740 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16785", event); return false;' | |
7741 title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests116785' | |
7742 target="_blank"></a> | |
7743 </td> | |
7744 <td class='DevStatusBox'> | |
7745 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13822", event); return false;' | |
7746 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213822' | |
7747 target="_blank"></a> | |
7748 </td> | |
7749 <td class='DevStatusBox'> | |
7750 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10229", event); return false;' | |
7751 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310229' | |
7752 target="_blank"></a> | |
7753 </td> | |
7754 <td class='DevStatusBox'> | |
7755 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18424", event); return false;' | |
7756 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118424' | |
7757 target="_blank"></a> | |
7758 </td> | |
7759 <td class='DevStatusBox'> | |
7760 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14328", event); return false;' | |
7761 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214328' | |
7762 target="_blank"></a> | |
7763 </td> | |
7764 <td class='DevStatusBox'> | |
7765 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11466", event); return false;' | |
7766 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311466' | |
7767 target="_blank"></a> | |
7768 </td> | |
7769 <td class='DevStatusBox'> | |
7770 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15139", event); return false;' | |
7771 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15139' | |
7772 target="_blank"></a> | |
7773 </td> | |
7774 <td class='DevStatusBox'> | |
7775 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17636", event); return false;' | |
7776 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17636' | |
7777 target="_blank"></a> | |
7778 </td> | |
7779 <td class='DevStatusBox'> | |
7780 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16569", event); return false;' | |
7781 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116569' | |
7782 target="_blank"></a> | |
7783 </td> | |
7784 <td class='DevStatusBox'> | |
7785 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
7786 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
7787 target="_blank"></a> | |
7788 </td> | |
7789 <td class='DevStatusBox'> | |
7790 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16183", event); return false;' | |
7791 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316183' | |
7792 target="_blank"></a> | |
7793 </td> | |
7794 <td class='DevStatusBox'> | |
7795 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
7796 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
7797 target="_blank"></a> | |
7798 </td> | |
7799 <td class='DevStatusBox'> | |
7800 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
7801 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
7802 target="_blank"></a> | |
7803 </td> | |
7804 <td class='DevStatusBox'> | |
7805 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18493", event); return false;' | |
7806 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218493' | |
7807 target="_blank"></a> | |
7808 </td> | |
7809 <td class='DevStatusBox'> | |
7810 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
7811 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
7812 target="_blank"></a> | |
7813 </td> | |
7814 <td class='DevStatusBox'> | |
7815 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8492", event); return false;' | |
7816 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48492' | |
7817 target="_blank"></a> | |
7818 </td> | |
7819 | |
7820 </tr> | |
7821 </table> | |
7822 </td> | |
7823 <td class='DevStatus Alt '> | |
7824 <table width="100%"> | |
7825 <tr> | |
7826 <td class='DevStatusBox'> | |
7827 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38947", event); return false;' | |
7828 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438947' | |
7829 target="_blank"></a> | |
7830 </td> | |
7831 <td class='DevStatusBox'> | |
7832 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19236", event); return false;' | |
7833 title='Linux Tests x64 failed browser_tests' class='DevStatusBox
failure TagLinuxTestsx6419236' | |
7834 target="_blank"></a> | |
7835 </td> | |
7836 <td class='DevStatusBox'> | |
7837 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20262", event); return false;' | |
7838 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20262' | |
7839 target="_blank"></a> | |
7840 </td> | |
7841 <td class='DevStatusBox'> | |
7842 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23430", event); return false;' | |
7843 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23430' | |
7844 target="_blank"></a> | |
7845 </td> | |
7846 <td class='DevStatusBox'> | |
7847 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
7848 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
7849 target="_blank"></a> | |
7850 </td> | |
7851 <td class='DevStatusBox'> | |
7852 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18448", event); return false;' | |
7853 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218448' | |
7854 target="_blank"></a> | |
7855 </td> | |
7856 <td class='DevStatusBox'> | |
7857 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20274", event); return false;' | |
7858 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20274' | |
7859 target="_blank"></a> | |
7860 </td> | |
7861 <td class='DevStatusBox'> | |
7862 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5716", event); return false;' | |
7863 title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox
running TagLinuxTestsdbgshared5716' | |
7864 target="_blank"></a> | |
7865 </td> | |
7866 <td class='DevStatusBox'> | |
7867 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22072", event); return false;' | |
7868 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22072' | |
7869 target="_blank"></a> | |
7870 </td> | |
7871 | |
7872 </tr> | |
7873 </table> | |
7874 </td> | |
7875 <td class='DevStatus Alt DevStatusCollapse'> | |
7876 <table width="100%"> | |
7877 <tr> | |
7878 <td class='DevStatusBox'> | |
7879 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2891", event); return false;' | |
7880 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2891' | |
7881 target="_blank"></a> | |
7882 </td> | |
7883 | |
7884 </tr> | |
7885 </table> | |
7886 </td> | |
7887 </tr> | |
7888 | |
7889 <tr> | |
7890 <td colspan="7" class='DevComment Alt'> | |
7891 Trust servers that claim "Accept-Ranges: bytes" but serve a 200 fo
r Range:0-<br/><br/>BUG=110309<br/><br/><br/>Review URL: http://codereview.chrom
ium.org/9701082 | |
7892 </td> | |
7893 </tr> | |
7894 | |
7895 <tr> | |
7896 <td colspan="7" class='DevDetails Alt'> | |
7897 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
7898 <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/UnloadPag
eAction"> UnloadPageAction </a></li> | |
7899 <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="co
nsole/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/log
s/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> | |
7900 <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x6
4/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/..
/builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAc
tion"> UnloadPageAction </a></li> | |
7901 </ul> | |
7902 </td> | |
7903 </tr> | |
7904 | |
7905 | |
7906 <tr class='DevStatusSpacing'> | |
7907 <td> | |
7908 </td> | |
7909 </tr> | |
7910 | |
7911 <tr> | |
7912 <td class='DevRev DevRevCollapse' width="1%"> | |
7913 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127216" t
arget="_blank">127216</a> | |
7914 </td> | |
7915 <td class='DevName ' width="1%"> | |
7916 mpcomplete<span style="display:none">ohnoyoudont</span>@chromium.org | |
7917 </td> | |
7918 | |
7919 <td class='DevStatus '> | |
7920 <table width="100%"> | |
7921 <tr> | |
7922 <td class='DevStatusBox'> | |
7923 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9952", event); return false;' | |
7924 title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' | |
7925 target="_blank"></a> | |
7926 </td> | |
7927 <td class='DevStatusBox'> | |
7928 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12581", event); return false;' | |
7929 title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' | |
7930 target="_blank"></a> | |
7931 </td> | |
7932 <td class='DevStatusBox'> | |
7933 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21367", event); return false;' | |
7934 title='Linux build successful' class='DevStatusBox success TagLin
ux21367' | |
7935 target="_blank"></a> | |
7936 </td> | |
7937 <td class='DevStatusBox'> | |
7938 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25047", event); return false;' | |
7939 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425047' | |
7940 target="_blank"></a> | |
7941 </td> | |
7942 | |
7943 </tr> | |
7944 </table> | |
7945 </td> | |
7946 <td class='DevStatus '> | |
7947 <table width="100%"> | |
7948 <tr> | |
7949 <td class='DevStatusBox'> | |
7950 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25922", event); return false;' | |
7951 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25922' | |
7952 target="_blank"></a> | |
7953 </td> | |
7954 <td class='DevStatusBox'> | |
7955 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13553", event); return false;' | |
7956 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113553' | |
7957 target="_blank"></a> | |
7958 </td> | |
7959 <td class='DevStatusBox'> | |
7960 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13222", event); return false;' | |
7961 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213222' | |
7962 target="_blank"></a> | |
7963 </td> | |
7964 <td class='DevStatusBox'> | |
7965 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10080", event); return false;' | |
7966 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310080' | |
7967 target="_blank"></a> | |
7968 </td> | |
7969 <td class='DevStatusBox'> | |
7970 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17519", event); return false;' | |
7971 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117519' | |
7972 target="_blank"></a> | |
7973 </td> | |
7974 <td class='DevStatusBox'> | |
7975 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16402", event); return false;' | |
7976 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216402' | |
7977 target="_blank"></a> | |
7978 </td> | |
7979 <td class='DevStatusBox'> | |
7980 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12817", event); return false;' | |
7981 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312817' | |
7982 target="_blank"></a> | |
7983 </td> | |
7984 <td class='DevStatusBox'> | |
7985 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4895", event); return false;' | |
7986 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14895' | |
7987 target="_blank"></a> | |
7988 </td> | |
7989 <td class='DevStatusBox'> | |
7990 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4294", event); return false;' | |
7991 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24294' | |
7992 target="_blank"></a> | |
7993 </td> | |
7994 <td class='DevStatusBox'> | |
7995 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4307", event); return false;' | |
7996 title='Win7 Tests (3) failed browser_tests' class='DevStatusBox f
ailure TagWin7Tests34307' | |
7997 target="_blank"></a> | |
7998 </td> | |
7999 <td class='DevStatusBox'> | |
8000 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17780", event); return false;' | |
8001 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17780' | |
8002 target="_blank"></a> | |
8003 </td> | |
8004 <td class='DevStatusBox'> | |
8005 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23386", event); return false;' | |
8006 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23386' | |
8007 target="_blank"></a> | |
8008 </td> | |
8009 <td class='DevStatusBox'> | |
8010 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26301", event); return false;' | |
8011 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426301' | |
8012 target="_blank"></a> | |
8013 </td> | |
8014 <td class='DevStatusBox'> | |
8015 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23586", event); return false;' | |
8016 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623586' | |
8017 target="_blank"></a> | |
8018 </td> | |
8019 <td class='DevStatusBox'> | |
8020 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24937", event); return false;' | |
8021 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724937' | |
8022 target="_blank"></a> | |
8023 </td> | |
8024 <td class='DevStatusBox'> | |
8025 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24371", event); return false;' | |
8026 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824371' | |
8027 target="_blank"></a> | |
8028 </td> | |
8029 <td class='DevStatusBox'> | |
8030 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17642", event); return false;' | |
8031 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17642' | |
8032 target="_blank"></a> | |
8033 </td> | |
8034 <td class='DevStatusBox'> | |
8035 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27230", event); return false;' | |
8036 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27230' | |
8037 target="_blank"></a> | |
8038 </td> | |
8039 <td class='DevStatusBox'> | |
8040 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19603", event); return false;' | |
8041 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119603' | |
8042 target="_blank"></a> | |
8043 </td> | |
8044 <td class='DevStatusBox'> | |
8045 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14551", event); return false;' | |
8046 title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running
TagXPTestsdbg214551' | |
8047 target="_blank"></a> | |
8048 </td> | |
8049 <td class='DevStatusBox'> | |
8050 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
8051 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
8052 target="_blank"></a> | |
8053 </td> | |
8054 <td class='DevStatusBox'> | |
8055 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14471", event); return false;' | |
8056 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414471' | |
8057 target="_blank"></a> | |
8058 </td> | |
8059 <td class='DevStatusBox'> | |
8060 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
8061 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
8062 target="_blank"></a> | |
8063 </td> | |
8064 <td class='DevStatusBox'> | |
8065 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9109", event); return false;' | |
8066 title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running T
agXPTestsdbg69109' | |
8067 target="_blank"></a> | |
8068 </td> | |
8069 <td class='DevStatusBox'> | |
8070 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4962", event); return false;' | |
8071 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14962' | |
8072 target="_blank"></a> | |
8073 </td> | |
8074 <td class='DevStatusBox'> | |
8075 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3587", event); return false;' | |
8076 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23587' | |
8077 target="_blank"></a> | |
8078 </td> | |
8079 <td class='DevStatusBox'> | |
8080 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3845", event); return false;' | |
8081 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33845' | |
8082 target="_blank"></a> | |
8083 </td> | |
8084 <td class='DevStatusBox'> | |
8085 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3870", event); return false;' | |
8086 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43870' | |
8087 target="_blank"></a> | |
8088 </td> | |
8089 <td class='DevStatusBox'> | |
8090 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3862", event); return false;' | |
8091 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53862' | |
8092 target="_blank"></a> | |
8093 </td> | |
8094 <td class='DevStatusBox'> | |
8095 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3890", event); return false;' | |
8096 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63890' | |
8097 target="_blank"></a> | |
8098 </td> | |
8099 <td class='DevStatusBox'> | |
8100 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21448", event); return false;' | |
8101 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox warnings TagInteractiveTestsdbg21448' | |
8102 target="_blank"></a> | |
8103 </td> | |
8104 <td class='DevStatusBox'> | |
8105 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7997", event); return false;' | |
8106 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7997' | |
8107 target="_blank"></a> | |
8108 </td> | |
8109 | |
8110 </tr> | |
8111 </table> | |
8112 </td> | |
8113 <td class='DevStatus '> | |
8114 <table width="100%"> | |
8115 <tr> | |
8116 <td class='DevStatusBox'> | |
8117 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33134", event); return false;' | |
8118 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33134' | |
8119 target="_blank"></a> | |
8120 </td> | |
8121 <td class='DevStatusBox'> | |
8122 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16785", event); return false;' | |
8123 title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests116785' | |
8124 target="_blank"></a> | |
8125 </td> | |
8126 <td class='DevStatusBox'> | |
8127 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13822", event); return false;' | |
8128 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213822' | |
8129 target="_blank"></a> | |
8130 </td> | |
8131 <td class='DevStatusBox'> | |
8132 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10229", event); return false;' | |
8133 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310229' | |
8134 target="_blank"></a> | |
8135 </td> | |
8136 <td class='DevStatusBox'> | |
8137 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18424", event); return false;' | |
8138 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118424' | |
8139 target="_blank"></a> | |
8140 </td> | |
8141 <td class='DevStatusBox'> | |
8142 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14328", event); return false;' | |
8143 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214328' | |
8144 target="_blank"></a> | |
8145 </td> | |
8146 <td class='DevStatusBox'> | |
8147 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11466", event); return false;' | |
8148 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311466' | |
8149 target="_blank"></a> | |
8150 </td> | |
8151 <td class='DevStatusBox'> | |
8152 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15139", event); return false;' | |
8153 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15139' | |
8154 target="_blank"></a> | |
8155 </td> | |
8156 <td class='DevStatusBox'> | |
8157 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17636", event); return false;' | |
8158 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17636' | |
8159 target="_blank"></a> | |
8160 </td> | |
8161 <td class='DevStatusBox'> | |
8162 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16569", event); return false;' | |
8163 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116569' | |
8164 target="_blank"></a> | |
8165 </td> | |
8166 <td class='DevStatusBox'> | |
8167 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
8168 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
8169 target="_blank"></a> | |
8170 </td> | |
8171 <td class='DevStatusBox'> | |
8172 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16183", event); return false;' | |
8173 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316183' | |
8174 target="_blank"></a> | |
8175 </td> | |
8176 <td class='DevStatusBox'> | |
8177 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
8178 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
8179 target="_blank"></a> | |
8180 </td> | |
8181 <td class='DevStatusBox'> | |
8182 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
8183 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
8184 target="_blank"></a> | |
8185 </td> | |
8186 <td class='DevStatusBox'> | |
8187 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18493", event); return false;' | |
8188 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218493' | |
8189 target="_blank"></a> | |
8190 </td> | |
8191 <td class='DevStatusBox'> | |
8192 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
8193 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
8194 target="_blank"></a> | |
8195 </td> | |
8196 <td class='DevStatusBox'> | |
8197 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8492", event); return false;' | |
8198 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48492' | |
8199 target="_blank"></a> | |
8200 </td> | |
8201 | |
8202 </tr> | |
8203 </table> | |
8204 </td> | |
8205 <td class='DevStatus '> | |
8206 <table width="100%"> | |
8207 <tr> | |
8208 <td class='DevStatusBox'> | |
8209 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38947", event); return false;' | |
8210 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438947' | |
8211 target="_blank"></a> | |
8212 </td> | |
8213 <td class='DevStatusBox'> | |
8214 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19236", event); return false;' | |
8215 title='Linux Tests x64 failed browser_tests' class='DevStatusBox
failure TagLinuxTestsx6419236' | |
8216 target="_blank"></a> | |
8217 </td> | |
8218 <td class='DevStatusBox'> | |
8219 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20262", event); return false;' | |
8220 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20262' | |
8221 target="_blank"></a> | |
8222 </td> | |
8223 <td class='DevStatusBox'> | |
8224 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23430", event); return false;' | |
8225 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23430' | |
8226 target="_blank"></a> | |
8227 </td> | |
8228 <td class='DevStatusBox'> | |
8229 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
8230 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
8231 target="_blank"></a> | |
8232 </td> | |
8233 <td class='DevStatusBox'> | |
8234 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18448", event); return false;' | |
8235 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218448' | |
8236 target="_blank"></a> | |
8237 </td> | |
8238 <td class='DevStatusBox'> | |
8239 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20274", event); return false;' | |
8240 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20274' | |
8241 target="_blank"></a> | |
8242 </td> | |
8243 <td class='DevStatusBox'> | |
8244 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5716", event); return false;' | |
8245 title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox
running TagLinuxTestsdbgshared5716' | |
8246 target="_blank"></a> | |
8247 </td> | |
8248 <td class='DevStatusBox'> | |
8249 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22072", event); return false;' | |
8250 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22072' | |
8251 target="_blank"></a> | |
8252 </td> | |
8253 | |
8254 </tr> | |
8255 </table> | |
8256 </td> | |
8257 <td class='DevStatus DevStatusCollapse'> | |
8258 <table width="100%"> | |
8259 <tr> | |
8260 <td class='DevStatusBox'> | |
8261 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2891", event); return false;' | |
8262 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2891' | |
8263 target="_blank"></a> | |
8264 </td> | |
8265 | |
8266 </tr> | |
8267 </table> | |
8268 </td> | |
8269 </tr> | |
8270 | |
8271 <tr> | |
8272 <td colspan="7" class='DevComment '> | |
8273 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/>fir
st enqueued task for an extension will start its lazy background page, and<br/>t
asks are run once the page finishes loading. Events and messages now share<br/>t
his mechanism so that either one can activate the page.<br/><br/>BUG=81752<br/>T
EST=no<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9704031 | |
8274 </td> | |
8275 </tr> | |
8276 | |
8277 <tr> | |
8278 <td colspan="7" class='DevDetails '> | |
8279 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
8280 <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/UnloadPag
eAction"> UnloadPageAction </a></li> | |
8281 <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="co
nsole/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/log
s/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> | |
8282 <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x6
4/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/..
/builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAc
tion"> UnloadPageAction </a></li> | |
8283 </ul> | |
8284 </td> | |
8285 </tr> | |
8286 | |
8287 | |
8288 <tr class='DevStatusSpacing'> | |
8289 <td> | |
8290 </td> | |
8291 </tr> | |
8292 | |
8293 <tr> | |
8294 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
8295 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127215" t
arget="_blank">127215</a> | |
8296 </td> | |
8297 <td class='DevName Alt' width="1%"> | |
8298 mihaip<span style="display:none">ohnoyoudont</span>@chromium.org | |
8299 </td> | |
8300 | |
8301 <td class='DevStatus Alt '> | |
8302 <table width="100%"> | |
8303 <tr> | |
8304 <td class='DevStatusBox'> | |
8305 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9952", event); return false;' | |
8306 title='Win ETA: 1998s' class='DevStatusBox running TagWin9952' | |
8307 target="_blank"></a> | |
8308 </td> | |
8309 <td class='DevStatusBox'> | |
8310 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12581", event); return false;' | |
8311 title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' | |
8312 target="_blank"></a> | |
8313 </td> | |
8314 <td class='DevStatusBox'> | |
8315 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21367", event); return false;' | |
8316 title='Linux build successful' class='DevStatusBox success TagLin
ux21367' | |
8317 target="_blank"></a> | |
8318 </td> | |
8319 <td class='DevStatusBox'> | |
8320 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25047", event); return false;' | |
8321 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425047' | |
8322 target="_blank"></a> | |
8323 </td> | |
8324 | |
8325 </tr> | |
8326 </table> | |
8327 </td> | |
8328 <td class='DevStatus Alt '> | |
8329 <table width="100%"> | |
8330 <tr> | |
8331 <td class='DevStatusBox'> | |
8332 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25922", event); return false;' | |
8333 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25922' | |
8334 target="_blank"></a> | |
8335 </td> | |
8336 <td class='DevStatusBox'> | |
8337 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13553", event); return false;' | |
8338 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113553' | |
8339 target="_blank"></a> | |
8340 </td> | |
8341 <td class='DevStatusBox'> | |
8342 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13222", event); return false;' | |
8343 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213222' | |
8344 target="_blank"></a> | |
8345 </td> | |
8346 <td class='DevStatusBox'> | |
8347 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10080", event); return false;' | |
8348 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310080' | |
8349 target="_blank"></a> | |
8350 </td> | |
8351 <td class='DevStatusBox'> | |
8352 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17519", event); return false;' | |
8353 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117519' | |
8354 target="_blank"></a> | |
8355 </td> | |
8356 <td class='DevStatusBox'> | |
8357 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16402", event); return false;' | |
8358 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216402' | |
8359 target="_blank"></a> | |
8360 </td> | |
8361 <td class='DevStatusBox'> | |
8362 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12817", event); return false;' | |
8363 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312817' | |
8364 target="_blank"></a> | |
8365 </td> | |
8366 <td class='DevStatusBox'> | |
8367 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4895", event); return false;' | |
8368 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14895' | |
8369 target="_blank"></a> | |
8370 </td> | |
8371 <td class='DevStatusBox'> | |
8372 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4294", event); return false;' | |
8373 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24294' | |
8374 target="_blank"></a> | |
8375 </td> | |
8376 <td class='DevStatusBox'> | |
8377 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4307", event); return false;' | |
8378 title='Win7 Tests (3) failed browser_tests' class='DevStatusBox f
ailure TagWin7Tests34307' | |
8379 target="_blank"></a> | |
8380 </td> | |
8381 <td class='DevStatusBox'> | |
8382 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17780", event); return false;' | |
8383 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17780' | |
8384 target="_blank"></a> | |
8385 </td> | |
8386 <td class='DevStatusBox'> | |
8387 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23386", event); return false;' | |
8388 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23386' | |
8389 target="_blank"></a> | |
8390 </td> | |
8391 <td class='DevStatusBox'> | |
8392 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26301", event); return false;' | |
8393 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426301' | |
8394 target="_blank"></a> | |
8395 </td> | |
8396 <td class='DevStatusBox'> | |
8397 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23586", event); return false;' | |
8398 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623586' | |
8399 target="_blank"></a> | |
8400 </td> | |
8401 <td class='DevStatusBox'> | |
8402 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24937", event); return false;' | |
8403 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724937' | |
8404 target="_blank"></a> | |
8405 </td> | |
8406 <td class='DevStatusBox'> | |
8407 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24371", event); return false;' | |
8408 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824371' | |
8409 target="_blank"></a> | |
8410 </td> | |
8411 <td class='DevStatusBox'> | |
8412 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17642", event); return false;' | |
8413 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17642' | |
8414 target="_blank"></a> | |
8415 </td> | |
8416 <td class='DevStatusBox'> | |
8417 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27230", event); return false;' | |
8418 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27230' | |
8419 target="_blank"></a> | |
8420 </td> | |
8421 <td class='DevStatusBox'> | |
8422 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19603", event); return false;' | |
8423 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119603' | |
8424 target="_blank"></a> | |
8425 </td> | |
8426 <td class='DevStatusBox'> | |
8427 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14551", event); return false;' | |
8428 title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running
TagXPTestsdbg214551' | |
8429 target="_blank"></a> | |
8430 </td> | |
8431 <td class='DevStatusBox'> | |
8432 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
8433 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
8434 target="_blank"></a> | |
8435 </td> | |
8436 <td class='DevStatusBox'> | |
8437 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14471", event); return false;' | |
8438 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414471' | |
8439 target="_blank"></a> | |
8440 </td> | |
8441 <td class='DevStatusBox'> | |
8442 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
8443 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
8444 target="_blank"></a> | |
8445 </td> | |
8446 <td class='DevStatusBox'> | |
8447 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9109", event); return false;' | |
8448 title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running T
agXPTestsdbg69109' | |
8449 target="_blank"></a> | |
8450 </td> | |
8451 <td class='DevStatusBox'> | |
8452 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4962", event); return false;' | |
8453 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14962' | |
8454 target="_blank"></a> | |
8455 </td> | |
8456 <td class='DevStatusBox'> | |
8457 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3587", event); return false;' | |
8458 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23587' | |
8459 target="_blank"></a> | |
8460 </td> | |
8461 <td class='DevStatusBox'> | |
8462 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3845", event); return false;' | |
8463 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33845' | |
8464 target="_blank"></a> | |
8465 </td> | |
8466 <td class='DevStatusBox'> | |
8467 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3870", event); return false;' | |
8468 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43870' | |
8469 target="_blank"></a> | |
8470 </td> | |
8471 <td class='DevStatusBox'> | |
8472 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3862", event); return false;' | |
8473 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53862' | |
8474 target="_blank"></a> | |
8475 </td> | |
8476 <td class='DevStatusBox'> | |
8477 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3890", event); return false;' | |
8478 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63890' | |
8479 target="_blank"></a> | |
8480 </td> | |
8481 <td class='DevStatusBox'> | |
8482 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21448", event); return false;' | |
8483 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox warnings TagInteractiveTestsdbg21448' | |
8484 target="_blank"></a> | |
8485 </td> | |
8486 <td class='DevStatusBox'> | |
8487 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7997", event); return false;' | |
8488 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7997' | |
8489 target="_blank"></a> | |
8490 </td> | |
8491 | |
8492 </tr> | |
8493 </table> | |
8494 </td> | |
8495 <td class='DevStatus Alt '> | |
8496 <table width="100%"> | |
8497 <tr> | |
8498 <td class='DevStatusBox'> | |
8499 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33134", event); return false;' | |
8500 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33134' | |
8501 target="_blank"></a> | |
8502 </td> | |
8503 <td class='DevStatusBox'> | |
8504 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16785", event); return false;' | |
8505 title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests116785' | |
8506 target="_blank"></a> | |
8507 </td> | |
8508 <td class='DevStatusBox'> | |
8509 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13822", event); return false;' | |
8510 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213822' | |
8511 target="_blank"></a> | |
8512 </td> | |
8513 <td class='DevStatusBox'> | |
8514 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10229", event); return false;' | |
8515 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310229' | |
8516 target="_blank"></a> | |
8517 </td> | |
8518 <td class='DevStatusBox'> | |
8519 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18424", event); return false;' | |
8520 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118424' | |
8521 target="_blank"></a> | |
8522 </td> | |
8523 <td class='DevStatusBox'> | |
8524 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14328", event); return false;' | |
8525 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214328' | |
8526 target="_blank"></a> | |
8527 </td> | |
8528 <td class='DevStatusBox'> | |
8529 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11466", event); return false;' | |
8530 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311466' | |
8531 target="_blank"></a> | |
8532 </td> | |
8533 <td class='DevStatusBox'> | |
8534 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15139", event); return false;' | |
8535 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15139' | |
8536 target="_blank"></a> | |
8537 </td> | |
8538 <td class='DevStatusBox'> | |
8539 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17636", event); return false;' | |
8540 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17636' | |
8541 target="_blank"></a> | |
8542 </td> | |
8543 <td class='DevStatusBox'> | |
8544 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16569", event); return false;' | |
8545 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116569' | |
8546 target="_blank"></a> | |
8547 </td> | |
8548 <td class='DevStatusBox'> | |
8549 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
8550 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
8551 target="_blank"></a> | |
8552 </td> | |
8553 <td class='DevStatusBox'> | |
8554 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16183", event); return false;' | |
8555 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316183' | |
8556 target="_blank"></a> | |
8557 </td> | |
8558 <td class='DevStatusBox'> | |
8559 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
8560 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
8561 target="_blank"></a> | |
8562 </td> | |
8563 <td class='DevStatusBox'> | |
8564 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
8565 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
8566 target="_blank"></a> | |
8567 </td> | |
8568 <td class='DevStatusBox'> | |
8569 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18493", event); return false;' | |
8570 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218493' | |
8571 target="_blank"></a> | |
8572 </td> | |
8573 <td class='DevStatusBox'> | |
8574 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
8575 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
8576 target="_blank"></a> | |
8577 </td> | |
8578 <td class='DevStatusBox'> | |
8579 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8492", event); return false;' | |
8580 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48492' | |
8581 target="_blank"></a> | |
8582 </td> | |
8583 | |
8584 </tr> | |
8585 </table> | |
8586 </td> | |
8587 <td class='DevStatus Alt '> | |
8588 <table width="100%"> | |
8589 <tr> | |
8590 <td class='DevStatusBox'> | |
8591 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38947", event); return false;' | |
8592 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438947' | |
8593 target="_blank"></a> | |
8594 </td> | |
8595 <td class='DevStatusBox'> | |
8596 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19236", event); return false;' | |
8597 title='Linux Tests x64 failed browser_tests' class='DevStatusBox
failure TagLinuxTestsx6419236' | |
8598 target="_blank"></a> | |
8599 </td> | |
8600 <td class='DevStatusBox'> | |
8601 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20262", event); return false;' | |
8602 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20262' | |
8603 target="_blank"></a> | |
8604 </td> | |
8605 <td class='DevStatusBox'> | |
8606 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23430", event); return false;' | |
8607 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23430' | |
8608 target="_blank"></a> | |
8609 </td> | |
8610 <td class='DevStatusBox'> | |
8611 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
8612 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
8613 target="_blank"></a> | |
8614 </td> | |
8615 <td class='DevStatusBox'> | |
8616 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18448", event); return false;' | |
8617 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218448' | |
8618 target="_blank"></a> | |
8619 </td> | |
8620 <td class='DevStatusBox'> | |
8621 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20274", event); return false;' | |
8622 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20274' | |
8623 target="_blank"></a> | |
8624 </td> | |
8625 <td class='DevStatusBox'> | |
8626 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5716", event); return false;' | |
8627 title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox
running TagLinuxTestsdbgshared5716' | |
8628 target="_blank"></a> | |
8629 </td> | |
8630 <td class='DevStatusBox'> | |
8631 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22072", event); return false;' | |
8632 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22072' | |
8633 target="_blank"></a> | |
8634 </td> | |
8635 | |
8636 </tr> | |
8637 </table> | |
8638 </td> | |
8639 <td class='DevStatus Alt DevStatusCollapse'> | |
8640 <table width="100%"> | |
8641 <tr> | |
8642 <td class='DevStatusBox'> | |
8643 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2891", event); return false;' | |
8644 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2891' | |
8645 target="_blank"></a> | |
8646 </td> | |
8647 | |
8648 </tr> | |
8649 </table> | |
8650 </td> | |
8651 </tr> | |
8652 | |
8653 <tr> | |
8654 <td colspan="7" class='DevComment Alt'> | |
8655 Make ShellWindow subclass BaseWindow, to support the chrome.windows.* exte
nsion APIs<br/><br/>Platform-specific implementations of BaseWindow methods gene
rally mirror those<br/>in BrowserWindowGtk/BrowserWindowCocoa/BrowserView. Brows
erView::FlashFrame is<br/>moved to (Native)Widget, so that it can be used for bo
th browser windows and<br/>shell windows.<br/><br/>Review URL: http://codereview
.chromium.org/9706005 | |
8656 </td> | |
8657 </tr> | |
8658 | |
8659 <tr> | |
8660 <td colspan="7" class='DevDetails Alt'> | |
8661 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
8662 <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/UnloadPag
eAction"> UnloadPageAction </a></li> | |
8663 <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="co
nsole/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/log
s/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> | |
8664 <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x6
4/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/..
/builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAc
tion"> UnloadPageAction </a></li> | |
8665 </ul> | |
8666 </td> | |
8667 </tr> | |
8668 | |
8669 | |
8670 <tr class='DevStatusSpacing'> | |
8671 <td> | |
8672 </td> | |
8673 </tr> | |
8674 | |
8675 <tr> | |
8676 <td class='DevRev DevRevCollapse' width="1%"> | |
8677 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127214" t
arget="_blank">127214</a> | |
8678 </td> | |
8679 <td class='DevName ' width="1%"> | |
8680 mpcomplete<span style="display:none">ohnoyoudont</span>@chromium.org | |
8681 </td> | |
8682 | |
8683 <td class='DevStatus '> | |
8684 <table width="100%"> | |
8685 <tr> | |
8686 <td class='DevStatusBox'> | |
8687 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9951", event); return false;' | |
8688 title='Win build successful' class='DevStatusBox success TagWin99
51' | |
8689 target="_blank"></a> | |
8690 </td> | |
8691 <td class='DevStatusBox'> | |
8692 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12581", event); return false;' | |
8693 title='Mac ETA: 373s' class='DevStatusBox running TagMac12581' | |
8694 target="_blank"></a> | |
8695 </td> | |
8696 <td class='DevStatusBox'> | |
8697 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21367", event); return false;' | |
8698 title='Linux build successful' class='DevStatusBox success TagLin
ux21367' | |
8699 target="_blank"></a> | |
8700 </td> | |
8701 <td class='DevStatusBox'> | |
8702 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25046", event); return false;' | |
8703 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425046' | |
8704 target="_blank"></a> | |
8705 </td> | |
8706 | |
8707 </tr> | |
8708 </table> | |
8709 </td> | |
8710 <td class='DevStatus '> | |
8711 <table width="100%"> | |
8712 <tr> | |
8713 <td class='DevStatusBox'> | |
8714 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25921", event); return false;' | |
8715 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25921' | |
8716 target="_blank"></a> | |
8717 </td> | |
8718 <td class='DevStatusBox'> | |
8719 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13553", event); return false;' | |
8720 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113553' | |
8721 target="_blank"></a> | |
8722 </td> | |
8723 <td class='DevStatusBox'> | |
8724 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13222", event); return false;' | |
8725 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213222' | |
8726 target="_blank"></a> | |
8727 </td> | |
8728 <td class='DevStatusBox'> | |
8729 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10080", event); return false;' | |
8730 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310080' | |
8731 target="_blank"></a> | |
8732 </td> | |
8733 <td class='DevStatusBox'> | |
8734 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17518", event); return false;' | |
8735 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117518' | |
8736 target="_blank"></a> | |
8737 </td> | |
8738 <td class='DevStatusBox'> | |
8739 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16402", event); return false;' | |
8740 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216402' | |
8741 target="_blank"></a> | |
8742 </td> | |
8743 <td class='DevStatusBox'> | |
8744 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12817", event); return false;' | |
8745 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312817' | |
8746 target="_blank"></a> | |
8747 </td> | |
8748 <td class='DevStatusBox'> | |
8749 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4894", event); return false;' | |
8750 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14894' | |
8751 target="_blank"></a> | |
8752 </td> | |
8753 <td class='DevStatusBox'> | |
8754 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4293", event); return false;' | |
8755 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24293' | |
8756 target="_blank"></a> | |
8757 </td> | |
8758 <td class='DevStatusBox'> | |
8759 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4307", event); return false;' | |
8760 title='Win7 Tests (3) failed browser_tests' class='DevStatusBox f
ailure TagWin7Tests34307' | |
8761 target="_blank"></a> | |
8762 </td> | |
8763 <td class='DevStatusBox'> | |
8764 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17779", event); return false;' | |
8765 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17779' | |
8766 target="_blank"></a> | |
8767 </td> | |
8768 <td class='DevStatusBox'> | |
8769 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23385", event); return false;' | |
8770 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23385' | |
8771 target="_blank"></a> | |
8772 </td> | |
8773 <td class='DevStatusBox'> | |
8774 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26300", event); return false;' | |
8775 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426300' | |
8776 target="_blank"></a> | |
8777 </td> | |
8778 <td class='DevStatusBox'> | |
8779 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23585", event); return false;' | |
8780 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623585' | |
8781 target="_blank"></a> | |
8782 </td> | |
8783 <td class='DevStatusBox'> | |
8784 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24936", event); return false;' | |
8785 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724936' | |
8786 target="_blank"></a> | |
8787 </td> | |
8788 <td class='DevStatusBox'> | |
8789 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24370", event); return false;' | |
8790 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824370' | |
8791 target="_blank"></a> | |
8792 </td> | |
8793 <td class='DevStatusBox'> | |
8794 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17641", event); return false;' | |
8795 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17641' | |
8796 target="_blank"></a> | |
8797 </td> | |
8798 <td class='DevStatusBox'> | |
8799 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27229", event); return false;' | |
8800 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27229' | |
8801 target="_blank"></a> | |
8802 </td> | |
8803 <td class='DevStatusBox'> | |
8804 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19603", event); return false;' | |
8805 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119603' | |
8806 target="_blank"></a> | |
8807 </td> | |
8808 <td class='DevStatusBox'> | |
8809 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14551", event); return false;' | |
8810 title='XP Tests (dbg)(2) ETA: 1512s' class='DevStatusBox running
TagXPTestsdbg214551' | |
8811 target="_blank"></a> | |
8812 </td> | |
8813 <td class='DevStatusBox'> | |
8814 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
8815 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
8816 target="_blank"></a> | |
8817 </td> | |
8818 <td class='DevStatusBox'> | |
8819 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14471", event); return false;' | |
8820 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414471' | |
8821 target="_blank"></a> | |
8822 </td> | |
8823 <td class='DevStatusBox'> | |
8824 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
8825 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
8826 target="_blank"></a> | |
8827 </td> | |
8828 <td class='DevStatusBox'> | |
8829 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9109", event); return false;' | |
8830 title='XP Tests (dbg)(6) ETA: 62s' class='DevStatusBox running T
agXPTestsdbg69109' | |
8831 target="_blank"></a> | |
8832 </td> | |
8833 <td class='DevStatusBox'> | |
8834 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4961", event); return false;' | |
8835 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14961' | |
8836 target="_blank"></a> | |
8837 </td> | |
8838 <td class='DevStatusBox'> | |
8839 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3586", event); return false;' | |
8840 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23586' | |
8841 target="_blank"></a> | |
8842 </td> | |
8843 <td class='DevStatusBox'> | |
8844 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3844", event); return false;' | |
8845 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33844' | |
8846 target="_blank"></a> | |
8847 </td> | |
8848 <td class='DevStatusBox'> | |
8849 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3870", event); return false;' | |
8850 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43870' | |
8851 target="_blank"></a> | |
8852 </td> | |
8853 <td class='DevStatusBox'> | |
8854 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3862", event); return false;' | |
8855 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53862' | |
8856 target="_blank"></a> | |
8857 </td> | |
8858 <td class='DevStatusBox'> | |
8859 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3889", event); return false;' | |
8860 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63889' | |
8861 target="_blank"></a> | |
8862 </td> | |
8863 <td class='DevStatusBox'> | |
8864 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21448", event); return false;' | |
8865 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox warnings TagInteractiveTestsdbg21448' | |
8866 target="_blank"></a> | |
8867 </td> | |
8868 <td class='DevStatusBox'> | |
8869 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7996", event); return false;' | |
8870 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7996' | |
8871 target="_blank"></a> | |
8872 </td> | |
8873 | |
8874 </tr> | |
8875 </table> | |
8876 </td> | |
8877 <td class='DevStatus '> | |
8878 <table width="100%"> | |
8879 <tr> | |
8880 <td class='DevStatusBox'> | |
8881 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33133", event); return false;' | |
8882 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33133' | |
8883 target="_blank"></a> | |
8884 </td> | |
8885 <td class='DevStatusBox'> | |
8886 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16785", event); return false;' | |
8887 title='Mac10.5 Tests (1) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests116785' | |
8888 target="_blank"></a> | |
8889 </td> | |
8890 <td class='DevStatusBox'> | |
8891 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13822", event); return false;' | |
8892 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213822' | |
8893 target="_blank"></a> | |
8894 </td> | |
8895 <td class='DevStatusBox'> | |
8896 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10229", event); return false;' | |
8897 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310229' | |
8898 target="_blank"></a> | |
8899 </td> | |
8900 <td class='DevStatusBox'> | |
8901 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18424", event); return false;' | |
8902 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118424' | |
8903 target="_blank"></a> | |
8904 </td> | |
8905 <td class='DevStatusBox'> | |
8906 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14328", event); return false;' | |
8907 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214328' | |
8908 target="_blank"></a> | |
8909 </td> | |
8910 <td class='DevStatusBox'> | |
8911 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11466", event); return false;' | |
8912 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311466' | |
8913 target="_blank"></a> | |
8914 </td> | |
8915 <td class='DevStatusBox'> | |
8916 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15138", event); return false;' | |
8917 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15138' | |
8918 target="_blank"></a> | |
8919 </td> | |
8920 <td class='DevStatusBox'> | |
8921 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17636", event); return false;' | |
8922 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17636' | |
8923 target="_blank"></a> | |
8924 </td> | |
8925 <td class='DevStatusBox'> | |
8926 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16569", event); return false;' | |
8927 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116569' | |
8928 target="_blank"></a> | |
8929 </td> | |
8930 <td class='DevStatusBox'> | |
8931 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
8932 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
8933 target="_blank"></a> | |
8934 </td> | |
8935 <td class='DevStatusBox'> | |
8936 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16183", event); return false;' | |
8937 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316183' | |
8938 target="_blank"></a> | |
8939 </td> | |
8940 <td class='DevStatusBox'> | |
8941 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
8942 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
8943 target="_blank"></a> | |
8944 </td> | |
8945 <td class='DevStatusBox'> | |
8946 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
8947 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
8948 target="_blank"></a> | |
8949 </td> | |
8950 <td class='DevStatusBox'> | |
8951 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18493", event); return false;' | |
8952 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218493' | |
8953 target="_blank"></a> | |
8954 </td> | |
8955 <td class='DevStatusBox'> | |
8956 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
8957 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
8958 target="_blank"></a> | |
8959 </td> | |
8960 <td class='DevStatusBox'> | |
8961 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8492", event); return false;' | |
8962 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48492' | |
8963 target="_blank"></a> | |
8964 </td> | |
8965 | |
8966 </tr> | |
8967 </table> | |
8968 </td> | |
8969 <td class='DevStatus '> | |
8970 <table width="100%"> | |
8971 <tr> | |
8972 <td class='DevStatusBox'> | |
8973 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38946", event); return false;' | |
8974 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438946' | |
8975 target="_blank"></a> | |
8976 </td> | |
8977 <td class='DevStatusBox'> | |
8978 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19236", event); return false;' | |
8979 title='Linux Tests x64 failed browser_tests' class='DevStatusBox
failure TagLinuxTestsx6419236' | |
8980 target="_blank"></a> | |
8981 </td> | |
8982 <td class='DevStatusBox'> | |
8983 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20262", event); return false;' | |
8984 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20262' | |
8985 target="_blank"></a> | |
8986 </td> | |
8987 <td class='DevStatusBox'> | |
8988 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23430", event); return false;' | |
8989 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23430' | |
8990 target="_blank"></a> | |
8991 </td> | |
8992 <td class='DevStatusBox'> | |
8993 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
8994 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
8995 target="_blank"></a> | |
8996 </td> | |
8997 <td class='DevStatusBox'> | |
8998 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18448", event); return false;' | |
8999 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218448' | |
9000 target="_blank"></a> | |
9001 </td> | |
9002 <td class='DevStatusBox'> | |
9003 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20273", event); return false;' | |
9004 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20273' | |
9005 target="_blank"></a> | |
9006 </td> | |
9007 <td class='DevStatusBox'> | |
9008 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5716", event); return false;' | |
9009 title='Linux Tests (dbg)(shared) ETA: 2951s' class='DevStatusBox
running TagLinuxTestsdbgshared5716' | |
9010 target="_blank"></a> | |
9011 </td> | |
9012 <td class='DevStatusBox'> | |
9013 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22072", event); return false;' | |
9014 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22072' | |
9015 target="_blank"></a> | |
9016 </td> | |
9017 | |
9018 </tr> | |
9019 </table> | |
9020 </td> | |
9021 <td class='DevStatus DevStatusCollapse'> | |
9022 <table width="100%"> | |
9023 <tr> | |
9024 <td class='DevStatusBox'> | |
9025 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2890", event); return false;' | |
9026 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2890' | |
9027 target="_blank"></a> | |
9028 </td> | |
9029 | |
9030 </tr> | |
9031 </table> | |
9032 </td> | |
9033 </tr> | |
9034 | |
9035 <tr> | |
9036 <td colspan="7" class='DevComment '> | |
9037 Disable AppApiTest.ReloadAppAfterCrash on Mac and Linux due to flaky timeo
uts.<br/><br/>TBR=mihaip<br/>BUG=118502<br/>TEST=no<br/><br/>Review URL: https:/
/chromiumcodereview.appspot.com/9705077 | |
9038 </td> | |
9039 </tr> | |
9040 | |
9041 <tr> | |
9042 <td colspan="7" class='DevDetails '> | |
9043 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
9044 <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/UnloadPag
eAction"> UnloadPageAction </a></li> | |
9045 <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="co
nsole/../builders/Mac10.5%20Tests%20%281%29/builds/16785/steps/browser_tests/log
s/URLLoader_TrustedHttpRestriction"> URLLoader_TrustedHttpRestriction </a></li> | |
9046 <li>Linux Tests x64: browser_tests 2 flaky did not complete failed 1
Flakiness dashboard - <a href="console/../builders/Linux%20Tests%20x6
4/builds/19236/steps/browser_tests/logs/stdio"> stdio </a> - <a href="console/..
/builders/Linux%20Tests%20x64/builds/19236/steps/browser_tests/logs/UnloadPageAc
tion"> UnloadPageAction </a></li> | |
9047 </ul> | |
9048 </td> | |
9049 </tr> | |
9050 | |
9051 | |
9052 <tr class='DevStatusSpacing'> | |
9053 <td> | |
9054 </td> | |
9055 </tr> | |
9056 | |
9057 <tr> | |
9058 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
9059 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127213" t
arget="_blank">127213</a> | |
9060 </td> | |
9061 <td class='DevName Alt' width="1%"> | |
9062 stevenjb<span style="display:none">ohnoyoudont</span>@google.com | |
9063 </td> | |
9064 | |
9065 <td class='DevStatus Alt '> | |
9066 <table width="100%"> | |
9067 <tr> | |
9068 <td class='DevStatusBox'> | |
9069 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9951", event); return false;' | |
9070 title='Win build successful' class='DevStatusBox success TagWin99
51' | |
9071 target="_blank"></a> | |
9072 </td> | |
9073 <td class='DevStatusBox'> | |
9074 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12580", event); return false;' | |
9075 title='Mac build successful' class='DevStatusBox success TagMac12
580' | |
9076 target="_blank"></a> | |
9077 </td> | |
9078 <td class='DevStatusBox'> | |
9079 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21367", event); return false;' | |
9080 title='Linux build successful' class='DevStatusBox success TagLin
ux21367' | |
9081 target="_blank"></a> | |
9082 </td> | |
9083 <td class='DevStatusBox'> | |
9084 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25045", event); return false;' | |
9085 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425045' | |
9086 target="_blank"></a> | |
9087 </td> | |
9088 | |
9089 </tr> | |
9090 </table> | |
9091 </td> | |
9092 <td class='DevStatus Alt '> | |
9093 <table width="100%"> | |
9094 <tr> | |
9095 <td class='DevStatusBox'> | |
9096 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25920", event); return false;' | |
9097 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25920' | |
9098 target="_blank"></a> | |
9099 </td> | |
9100 <td class='DevStatusBox'> | |
9101 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13552", event); return false;' | |
9102 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113552' | |
9103 target="_blank"></a> | |
9104 </td> | |
9105 <td class='DevStatusBox'> | |
9106 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13222", event); return false;' | |
9107 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213222' | |
9108 target="_blank"></a> | |
9109 </td> | |
9110 <td class='DevStatusBox'> | |
9111 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10079", event); return false;' | |
9112 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310079' | |
9113 target="_blank"></a> | |
9114 </td> | |
9115 <td class='DevStatusBox'> | |
9116 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17518", event); return false;' | |
9117 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117518' | |
9118 target="_blank"></a> | |
9119 </td> | |
9120 <td class='DevStatusBox'> | |
9121 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16401", event); return false;' | |
9122 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216401' | |
9123 target="_blank"></a> | |
9124 </td> | |
9125 <td class='DevStatusBox'> | |
9126 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12816", event); return false;' | |
9127 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312816' | |
9128 target="_blank"></a> | |
9129 </td> | |
9130 <td class='DevStatusBox'> | |
9131 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4894", event); return false;' | |
9132 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14894' | |
9133 target="_blank"></a> | |
9134 </td> | |
9135 <td class='DevStatusBox'> | |
9136 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4293", event); return false;' | |
9137 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24293' | |
9138 target="_blank"></a> | |
9139 </td> | |
9140 <td class='DevStatusBox'> | |
9141 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4306", event); return false;' | |
9142 title='Win7 Tests (3) build successful' class='DevStatusBox succe
ss TagWin7Tests34306' | |
9143 target="_blank"></a> | |
9144 </td> | |
9145 <td class='DevStatusBox'> | |
9146 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17779", event); return false;' | |
9147 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17779' | |
9148 target="_blank"></a> | |
9149 </td> | |
9150 <td class='DevStatusBox'> | |
9151 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23384", event); return false;' | |
9152 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23384' | |
9153 target="_blank"></a> | |
9154 </td> | |
9155 <td class='DevStatusBox'> | |
9156 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26299", event); return false;' | |
9157 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426299' | |
9158 target="_blank"></a> | |
9159 </td> | |
9160 <td class='DevStatusBox'> | |
9161 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23584", event); return false;' | |
9162 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623584' | |
9163 target="_blank"></a> | |
9164 </td> | |
9165 <td class='DevStatusBox'> | |
9166 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24935", event); return false;' | |
9167 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724935' | |
9168 target="_blank"></a> | |
9169 </td> | |
9170 <td class='DevStatusBox'> | |
9171 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24369", event); return false;' | |
9172 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824369' | |
9173 target="_blank"></a> | |
9174 </td> | |
9175 <td class='DevStatusBox'> | |
9176 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17641", event); return false;' | |
9177 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17641' | |
9178 target="_blank"></a> | |
9179 </td> | |
9180 <td class='DevStatusBox'> | |
9181 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27228", event); return false;' | |
9182 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27228' | |
9183 target="_blank"></a> | |
9184 </td> | |
9185 <td class='DevStatusBox'> | |
9186 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19602", event); return false;' | |
9187 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119602' | |
9188 target="_blank"></a> | |
9189 </td> | |
9190 <td class='DevStatusBox'> | |
9191 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14550", event); return false;' | |
9192 title='XP Tests (dbg)(2) build successful' class='DevStatusBox su
ccess TagXPTestsdbg214550' | |
9193 target="_blank"></a> | |
9194 </td> | |
9195 <td class='DevStatusBox'> | |
9196 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
9197 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
9198 target="_blank"></a> | |
9199 </td> | |
9200 <td class='DevStatusBox'> | |
9201 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14471", event); return false;' | |
9202 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414471' | |
9203 target="_blank"></a> | |
9204 </td> | |
9205 <td class='DevStatusBox'> | |
9206 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
9207 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
9208 target="_blank"></a> | |
9209 </td> | |
9210 <td class='DevStatusBox'> | |
9211 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9108", event); return false;' | |
9212 title='XP Tests (dbg)(6) build successful' class='DevStatusBox su
ccess TagXPTestsdbg69108' | |
9213 target="_blank"></a> | |
9214 </td> | |
9215 <td class='DevStatusBox'> | |
9216 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4961", event); return false;' | |
9217 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14961' | |
9218 target="_blank"></a> | |
9219 </td> | |
9220 <td class='DevStatusBox'> | |
9221 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3586", event); return false;' | |
9222 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23586' | |
9223 target="_blank"></a> | |
9224 </td> | |
9225 <td class='DevStatusBox'> | |
9226 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3844", event); return false;' | |
9227 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33844' | |
9228 target="_blank"></a> | |
9229 </td> | |
9230 <td class='DevStatusBox'> | |
9231 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3870", event); return false;' | |
9232 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43870' | |
9233 target="_blank"></a> | |
9234 </td> | |
9235 <td class='DevStatusBox'> | |
9236 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3862", event); return false;' | |
9237 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53862' | |
9238 target="_blank"></a> | |
9239 </td> | |
9240 <td class='DevStatusBox'> | |
9241 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3889", event); return false;' | |
9242 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63889' | |
9243 target="_blank"></a> | |
9244 </td> | |
9245 <td class='DevStatusBox'> | |
9246 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21447", event); return false;' | |
9247 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox failure TagInteractiveTestsdbg21447' | |
9248 target="_blank"></a> | |
9249 </td> | |
9250 <td class='DevStatusBox'> | |
9251 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7995", event); return false;' | |
9252 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7995' | |
9253 target="_blank"></a> | |
9254 </td> | |
9255 | |
9256 </tr> | |
9257 </table> | |
9258 </td> | |
9259 <td class='DevStatus Alt '> | |
9260 <table width="100%"> | |
9261 <tr> | |
9262 <td class='DevStatusBox'> | |
9263 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33132", event); return false;' | |
9264 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33132' | |
9265 target="_blank"></a> | |
9266 </td> | |
9267 <td class='DevStatusBox'> | |
9268 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16784", event); return false;' | |
9269 title='Mac10.5 Tests (1) build successful' class='DevStatusBox su
ccess TagMac105Tests116784' | |
9270 target="_blank"></a> | |
9271 </td> | |
9272 <td class='DevStatusBox'> | |
9273 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13822", event); return false;' | |
9274 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213822' | |
9275 target="_blank"></a> | |
9276 </td> | |
9277 <td class='DevStatusBox'> | |
9278 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10229", event); return false;' | |
9279 title='Mac10.5 Tests (3) build successful' class='DevStatusBox su
ccess TagMac105Tests310229' | |
9280 target="_blank"></a> | |
9281 </td> | |
9282 <td class='DevStatusBox'> | |
9283 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18423", event); return false;' | |
9284 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118423' | |
9285 target="_blank"></a> | |
9286 </td> | |
9287 <td class='DevStatusBox'> | |
9288 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14328", event); return false;' | |
9289 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214328' | |
9290 target="_blank"></a> | |
9291 </td> | |
9292 <td class='DevStatusBox'> | |
9293 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11466", event); return false;' | |
9294 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311466' | |
9295 target="_blank"></a> | |
9296 </td> | |
9297 <td class='DevStatusBox'> | |
9298 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15138", event); return false;' | |
9299 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15138' | |
9300 target="_blank"></a> | |
9301 </td> | |
9302 <td class='DevStatusBox'> | |
9303 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17635", event); return false;' | |
9304 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17635' | |
9305 target="_blank"></a> | |
9306 </td> | |
9307 <td class='DevStatusBox'> | |
9308 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16569", event); return false;' | |
9309 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116569' | |
9310 target="_blank"></a> | |
9311 </td> | |
9312 <td class='DevStatusBox'> | |
9313 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
9314 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
9315 target="_blank"></a> | |
9316 </td> | |
9317 <td class='DevStatusBox'> | |
9318 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16182", event); return false;' | |
9319 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316182' | |
9320 target="_blank"></a> | |
9321 </td> | |
9322 <td class='DevStatusBox'> | |
9323 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
9324 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
9325 target="_blank"></a> | |
9326 </td> | |
9327 <td class='DevStatusBox'> | |
9328 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
9329 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
9330 target="_blank"></a> | |
9331 </td> | |
9332 <td class='DevStatusBox'> | |
9333 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18492", event); return false;' | |
9334 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218492' | |
9335 target="_blank"></a> | |
9336 </td> | |
9337 <td class='DevStatusBox'> | |
9338 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
9339 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
9340 target="_blank"></a> | |
9341 </td> | |
9342 <td class='DevStatusBox'> | |
9343 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8492", event); return false;' | |
9344 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48492' | |
9345 target="_blank"></a> | |
9346 </td> | |
9347 | |
9348 </tr> | |
9349 </table> | |
9350 </td> | |
9351 <td class='DevStatus Alt '> | |
9352 <table width="100%"> | |
9353 <tr> | |
9354 <td class='DevStatusBox'> | |
9355 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38945", event); return false;' | |
9356 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438945' | |
9357 target="_blank"></a> | |
9358 </td> | |
9359 <td class='DevStatusBox'> | |
9360 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19235", event); return false;' | |
9361 title='Linux Tests x64 build successful' class='DevStatusBox succ
ess TagLinuxTestsx6419235' | |
9362 target="_blank"></a> | |
9363 </td> | |
9364 <td class='DevStatusBox'> | |
9365 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20261", event); return false;' | |
9366 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20261' | |
9367 target="_blank"></a> | |
9368 </td> | |
9369 <td class='DevStatusBox'> | |
9370 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23430", event); return false;' | |
9371 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23430' | |
9372 target="_blank"></a> | |
9373 </td> | |
9374 <td class='DevStatusBox'> | |
9375 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
9376 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
9377 target="_blank"></a> | |
9378 </td> | |
9379 <td class='DevStatusBox'> | |
9380 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18448", event); return false;' | |
9381 title='Linux Tests (dbg)(2) build successful' class='DevStatusBox
success TagLinuxTestsdbg218448' | |
9382 target="_blank"></a> | |
9383 </td> | |
9384 <td class='DevStatusBox'> | |
9385 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20272", event); return false;' | |
9386 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20272' | |
9387 target="_blank"></a> | |
9388 </td> | |
9389 <td class='DevStatusBox'> | |
9390 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5715", event); return false;' | |
9391 title='Linux Tests (dbg)(shared) build successful' class='DevStat
usBox success TagLinuxTestsdbgshared5715' | |
9392 target="_blank"></a> | |
9393 </td> | |
9394 <td class='DevStatusBox'> | |
9395 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22071", event); return false;' | |
9396 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22071' | |
9397 target="_blank"></a> | |
9398 </td> | |
9399 | |
9400 </tr> | |
9401 </table> | |
9402 </td> | |
9403 <td class='DevStatus Alt DevStatusCollapse'> | |
9404 <table width="100%"> | |
9405 <tr> | |
9406 <td class='DevStatusBox'> | |
9407 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2889", event); return false;' | |
9408 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2889' | |
9409 target="_blank"></a> | |
9410 </td> | |
9411 | |
9412 </tr> | |
9413 </table> | |
9414 </td> | |
9415 </tr> | |
9416 | |
9417 <tr> | |
9418 <td colspan="7" class='DevComment Alt'> | |
9419 Set app icon for panel apps.<br/><br/>BUG=118505<br/>TEST=See issue<br/><b
r/>Review URL: https://chromiumcodereview.appspot.com/9702093 | |
9420 </td> | |
9421 </tr> | |
9422 | |
9423 <tr> | |
9424 <td colspan="7" class='DevDetails Alt'> | |
9425 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
9426 <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakine
ss dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg
%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="c
onsole/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactiv
e_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a>
</li> | |
9427 </ul> | |
9428 </td> | |
9429 </tr> | |
9430 | |
9431 | |
9432 <tr class='DevStatusSpacing'> | |
9433 <td> | |
9434 </td> | |
9435 </tr> | |
9436 | |
9437 <tr> | |
9438 <td class='DevRev DevRevCollapse' width="1%"> | |
9439 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127212" t
arget="_blank">127212</a> | |
9440 </td> | |
9441 <td class='DevName ' width="1%"> | |
9442 rch<span style="display:none">ohnoyoudont</span>@chromium.org | |
9443 </td> | |
9444 | |
9445 <td class='DevStatus '> | |
9446 <table width="100%"> | |
9447 <tr> | |
9448 <td class='DevStatusBox'> | |
9449 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9951", event); return false;' | |
9450 title='Win build successful' class='DevStatusBox success TagWin99
51' | |
9451 target="_blank"></a> | |
9452 </td> | |
9453 <td class='DevStatusBox'> | |
9454 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12580", event); return false;' | |
9455 title='Mac build successful' class='DevStatusBox success TagMac12
580' | |
9456 target="_blank"></a> | |
9457 </td> | |
9458 <td class='DevStatusBox'> | |
9459 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21366", event); return false;' | |
9460 title='Linux failed compile' class='DevStatusBox failure TagLinux
21366' | |
9461 target="_blank"></a> | |
9462 </td> | |
9463 <td class='DevStatusBox'> | |
9464 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25044", event); return false;' | |
9465 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425044' | |
9466 target="_blank"></a> | |
9467 </td> | |
9468 | |
9469 </tr> | |
9470 </table> | |
9471 </td> | |
9472 <td class='DevStatus '> | |
9473 <table width="100%"> | |
9474 <tr> | |
9475 <td class='DevStatusBox'> | |
9476 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25919", event); return false;' | |
9477 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25919' | |
9478 target="_blank"></a> | |
9479 </td> | |
9480 <td class='DevStatusBox'> | |
9481 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13552", event); return false;' | |
9482 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113552' | |
9483 target="_blank"></a> | |
9484 </td> | |
9485 <td class='DevStatusBox'> | |
9486 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13221", event); return false;' | |
9487 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213221' | |
9488 target="_blank"></a> | |
9489 </td> | |
9490 <td class='DevStatusBox'> | |
9491 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10079", event); return false;' | |
9492 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310079' | |
9493 target="_blank"></a> | |
9494 </td> | |
9495 <td class='DevStatusBox'> | |
9496 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17517", event); return false;' | |
9497 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117517' | |
9498 target="_blank"></a> | |
9499 </td> | |
9500 <td class='DevStatusBox'> | |
9501 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16401", event); return false;' | |
9502 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216401' | |
9503 target="_blank"></a> | |
9504 </td> | |
9505 <td class='DevStatusBox'> | |
9506 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12816", event); return false;' | |
9507 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312816' | |
9508 target="_blank"></a> | |
9509 </td> | |
9510 <td class='DevStatusBox'> | |
9511 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4893", event); return false;' | |
9512 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14893' | |
9513 target="_blank"></a> | |
9514 </td> | |
9515 <td class='DevStatusBox'> | |
9516 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4293", event); return false;' | |
9517 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24293' | |
9518 target="_blank"></a> | |
9519 </td> | |
9520 <td class='DevStatusBox'> | |
9521 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4306", event); return false;' | |
9522 title='Win7 Tests (3) build successful' class='DevStatusBox succe
ss TagWin7Tests34306' | |
9523 target="_blank"></a> | |
9524 </td> | |
9525 <td class='DevStatusBox'> | |
9526 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17778", event); return false;' | |
9527 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17778' | |
9528 target="_blank"></a> | |
9529 </td> | |
9530 <td class='DevStatusBox'> | |
9531 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23383", event); return false;' | |
9532 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23383' | |
9533 target="_blank"></a> | |
9534 </td> | |
9535 <td class='DevStatusBox'> | |
9536 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26298", event); return false;' | |
9537 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426298' | |
9538 target="_blank"></a> | |
9539 </td> | |
9540 <td class='DevStatusBox'> | |
9541 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23584", event); return false;' | |
9542 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623584' | |
9543 target="_blank"></a> | |
9544 </td> | |
9545 <td class='DevStatusBox'> | |
9546 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24934", event); return false;' | |
9547 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724934' | |
9548 target="_blank"></a> | |
9549 </td> | |
9550 <td class='DevStatusBox'> | |
9551 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24368", event); return false;' | |
9552 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824368' | |
9553 target="_blank"></a> | |
9554 </td> | |
9555 <td class='DevStatusBox'> | |
9556 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17640", event); return false;' | |
9557 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17640' | |
9558 target="_blank"></a> | |
9559 </td> | |
9560 <td class='DevStatusBox'> | |
9561 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27227", event); return false;' | |
9562 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27227' | |
9563 target="_blank"></a> | |
9564 </td> | |
9565 <td class='DevStatusBox'> | |
9566 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19602", event); return false;' | |
9567 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119602' | |
9568 target="_blank"></a> | |
9569 </td> | |
9570 <td class='DevStatusBox'> | |
9571 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14550", event); return false;' | |
9572 title='XP Tests (dbg)(2) build successful' class='DevStatusBox su
ccess TagXPTestsdbg214550' | |
9573 target="_blank"></a> | |
9574 </td> | |
9575 <td class='DevStatusBox'> | |
9576 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
9577 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
9578 target="_blank"></a> | |
9579 </td> | |
9580 <td class='DevStatusBox'> | |
9581 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14470", event); return false;' | |
9582 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414470' | |
9583 target="_blank"></a> | |
9584 </td> | |
9585 <td class='DevStatusBox'> | |
9586 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
9587 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
9588 target="_blank"></a> | |
9589 </td> | |
9590 <td class='DevStatusBox'> | |
9591 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9108", event); return false;' | |
9592 title='XP Tests (dbg)(6) build successful' class='DevStatusBox su
ccess TagXPTestsdbg69108' | |
9593 target="_blank"></a> | |
9594 </td> | |
9595 <td class='DevStatusBox'> | |
9596 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4960", event); return false;' | |
9597 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14960' | |
9598 target="_blank"></a> | |
9599 </td> | |
9600 <td class='DevStatusBox'> | |
9601 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3586", event); return false;' | |
9602 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23586' | |
9603 target="_blank"></a> | |
9604 </td> | |
9605 <td class='DevStatusBox'> | |
9606 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3844", event); return false;' | |
9607 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33844' | |
9608 target="_blank"></a> | |
9609 </td> | |
9610 <td class='DevStatusBox'> | |
9611 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3869", event); return false;' | |
9612 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43869' | |
9613 target="_blank"></a> | |
9614 </td> | |
9615 <td class='DevStatusBox'> | |
9616 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3861", event); return false;' | |
9617 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53861' | |
9618 target="_blank"></a> | |
9619 </td> | |
9620 <td class='DevStatusBox'> | |
9621 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3889", event); return false;' | |
9622 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63889' | |
9623 target="_blank"></a> | |
9624 </td> | |
9625 <td class='DevStatusBox'> | |
9626 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21447", event); return false;' | |
9627 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox failure TagInteractiveTestsdbg21447' | |
9628 target="_blank"></a> | |
9629 </td> | |
9630 <td class='DevStatusBox'> | |
9631 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7994", event); return false;' | |
9632 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7994' | |
9633 target="_blank"></a> | |
9634 </td> | |
9635 | |
9636 </tr> | |
9637 </table> | |
9638 </td> | |
9639 <td class='DevStatus '> | |
9640 <table width="100%"> | |
9641 <tr> | |
9642 <td class='DevStatusBox'> | |
9643 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33131", event); return false;' | |
9644 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33131' | |
9645 target="_blank"></a> | |
9646 </td> | |
9647 <td class='DevStatusBox'> | |
9648 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16784", event); return false;' | |
9649 title='Mac10.5 Tests (1) build successful' class='DevStatusBox su
ccess TagMac105Tests116784' | |
9650 target="_blank"></a> | |
9651 </td> | |
9652 <td class='DevStatusBox'> | |
9653 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13821", event); return false;' | |
9654 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213821' | |
9655 target="_blank"></a> | |
9656 </td> | |
9657 <td class='DevStatusBox'> | |
9658 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10228", event); return false;' | |
9659 title='Mac10.5 Tests (3) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests310228' | |
9660 target="_blank"></a> | |
9661 </td> | |
9662 <td class='DevStatusBox'> | |
9663 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18423", event); return false;' | |
9664 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118423' | |
9665 target="_blank"></a> | |
9666 </td> | |
9667 <td class='DevStatusBox'> | |
9668 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14327", event); return false;' | |
9669 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214327' | |
9670 target="_blank"></a> | |
9671 </td> | |
9672 <td class='DevStatusBox'> | |
9673 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11465", event); return false;' | |
9674 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311465' | |
9675 target="_blank"></a> | |
9676 </td> | |
9677 <td class='DevStatusBox'> | |
9678 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15138", event); return false;' | |
9679 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15138' | |
9680 target="_blank"></a> | |
9681 </td> | |
9682 <td class='DevStatusBox'> | |
9683 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17634", event); return false;' | |
9684 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17634' | |
9685 target="_blank"></a> | |
9686 </td> | |
9687 <td class='DevStatusBox'> | |
9688 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16568", event); return false;' | |
9689 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116568' | |
9690 target="_blank"></a> | |
9691 </td> | |
9692 <td class='DevStatusBox'> | |
9693 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
9694 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
9695 target="_blank"></a> | |
9696 </td> | |
9697 <td class='DevStatusBox'> | |
9698 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16182", event); return false;' | |
9699 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316182' | |
9700 target="_blank"></a> | |
9701 </td> | |
9702 <td class='DevStatusBox'> | |
9703 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
9704 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
9705 target="_blank"></a> | |
9706 </td> | |
9707 <td class='DevStatusBox'> | |
9708 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
9709 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
9710 target="_blank"></a> | |
9711 </td> | |
9712 <td class='DevStatusBox'> | |
9713 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18492", event); return false;' | |
9714 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218492' | |
9715 target="_blank"></a> | |
9716 </td> | |
9717 <td class='DevStatusBox'> | |
9718 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
9719 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
9720 target="_blank"></a> | |
9721 </td> | |
9722 <td class='DevStatusBox'> | |
9723 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8491", event); return false;' | |
9724 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48491' | |
9725 target="_blank"></a> | |
9726 </td> | |
9727 | |
9728 </tr> | |
9729 </table> | |
9730 </td> | |
9731 <td class='DevStatus '> | |
9732 <table width="100%"> | |
9733 <tr> | |
9734 <td class='DevStatusBox'> | |
9735 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38944", event); return false;' | |
9736 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438944' | |
9737 target="_blank"></a> | |
9738 </td> | |
9739 <td class='DevStatusBox'> | |
9740 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19235", event); return false;' | |
9741 title='Linux Tests x64 build successful' class='DevStatusBox succ
ess TagLinuxTestsx6419235' | |
9742 target="_blank"></a> | |
9743 </td> | |
9744 <td class='DevStatusBox'> | |
9745 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20260", event); return false;' | |
9746 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20260' | |
9747 target="_blank"></a> | |
9748 </td> | |
9749 <td class='DevStatusBox'> | |
9750 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23429", event); return false;' | |
9751 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23429' | |
9752 target="_blank"></a> | |
9753 </td> | |
9754 <td class='DevStatusBox'> | |
9755 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
9756 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
9757 target="_blank"></a> | |
9758 </td> | |
9759 <td class='DevStatusBox'> | |
9760 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18447", event); return false;' | |
9761 title='Linux Tests (dbg)(2) failed base_unittests' class='DevStat
usBox failure TagLinuxTestsdbg218447' | |
9762 target="_blank"></a> | |
9763 </td> | |
9764 <td class='DevStatusBox'> | |
9765 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20271", event); return false;' | |
9766 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20271' | |
9767 target="_blank"></a> | |
9768 </td> | |
9769 <td class='DevStatusBox'> | |
9770 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5715", event); return false;' | |
9771 title='Linux Tests (dbg)(shared) build successful' class='DevStat
usBox success TagLinuxTestsdbgshared5715' | |
9772 target="_blank"></a> | |
9773 </td> | |
9774 <td class='DevStatusBox'> | |
9775 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22070", event); return false;' | |
9776 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22070' | |
9777 target="_blank"></a> | |
9778 </td> | |
9779 | |
9780 </tr> | |
9781 </table> | |
9782 </td> | |
9783 <td class='DevStatus DevStatusCollapse'> | |
9784 <table width="100%"> | |
9785 <tr> | |
9786 <td class='DevStatusBox'> | |
9787 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2888", event); return false;' | |
9788 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2888' | |
9789 target="_blank"></a> | |
9790 </td> | |
9791 | |
9792 </tr> | |
9793 </table> | |
9794 </td> | |
9795 </tr> | |
9796 | |
9797 <tr> | |
9798 <td colspan="7" class='DevComment '> | |
9799 Move SpdySession class statics to .cc globals and rename to match conventi
on.<br/><br/><br/>Review URL: http://codereview.chromium.org/9689066 | |
9800 </td> | |
9801 </tr> | |
9802 | |
9803 <tr> | |
9804 <td colspan="7" class='DevDetails '> | |
9805 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
9806 <li>Linux: compile failed - <a href="console/../builders/Linux
/builds/21366/steps/compile/logs/stdio"> stdio </a></li> | |
9807 <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakine
ss dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg
%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="c
onsole/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactiv
e_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a>
</li> | |
9808 <li>Mac10.5 Tests (3): browser_tests 2 flaky failed 1 Flakiness da
shboard - <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> | |
9809 <li>Linux Tests (dbg)(2): base_unittests 4 disabled failed 1 Flaki
ness dashboard - <a href="console/../builders/Linux%20Tests%20%28dbg%29%
282%29/builds/18447/steps/base_unittests/logs/stdio"> stdio </a> - <a href="cons
ole/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittes
ts/logs/Tasks"> Tasks </a></li> | |
9810 </ul> | |
9811 </td> | |
9812 </tr> | |
9813 | |
9814 | |
9815 <tr class='DevStatusSpacing'> | |
9816 <td> | |
9817 </td> | |
9818 </tr> | |
9819 | |
9820 <tr> | |
9821 <td class='DevRev Alt DevRevCollapse' width="1%"> | |
9822 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127210" t
arget="_blank">127210</a> | |
9823 </td> | |
9824 <td class='DevName Alt' width="1%"> | |
9825 thakis<span style="display:none">ohnoyoudont</span>@chromium.org | |
9826 </td> | |
9827 | |
9828 <td class='DevStatus Alt '> | |
9829 <table width="100%"> | |
9830 <tr> | |
9831 <td class='DevStatusBox'> | |
9832 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9951", event); return false;' | |
9833 title='Win build successful' class='DevStatusBox success TagWin99
51' | |
9834 target="_blank"></a> | |
9835 </td> | |
9836 <td class='DevStatusBox'> | |
9837 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12580", event); return false;' | |
9838 title='Mac build successful' class='DevStatusBox success TagMac12
580' | |
9839 target="_blank"></a> | |
9840 </td> | |
9841 <td class='DevStatusBox'> | |
9842 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21366", event); return false;' | |
9843 title='Linux failed compile' class='DevStatusBox failure TagLinux
21366' | |
9844 target="_blank"></a> | |
9845 </td> | |
9846 <td class='DevStatusBox'> | |
9847 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25044", event); return false;' | |
9848 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425044' | |
9849 target="_blank"></a> | |
9850 </td> | |
9851 | |
9852 </tr> | |
9853 </table> | |
9854 </td> | |
9855 <td class='DevStatus Alt '> | |
9856 <table width="100%"> | |
9857 <tr> | |
9858 <td class='DevStatusBox'> | |
9859 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25919", event); return false;' | |
9860 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25919' | |
9861 target="_blank"></a> | |
9862 </td> | |
9863 <td class='DevStatusBox'> | |
9864 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13552", event); return false;' | |
9865 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113552' | |
9866 target="_blank"></a> | |
9867 </td> | |
9868 <td class='DevStatusBox'> | |
9869 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13221", event); return false;' | |
9870 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213221' | |
9871 target="_blank"></a> | |
9872 </td> | |
9873 <td class='DevStatusBox'> | |
9874 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10079", event); return false;' | |
9875 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310079' | |
9876 target="_blank"></a> | |
9877 </td> | |
9878 <td class='DevStatusBox'> | |
9879 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17517", event); return false;' | |
9880 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117517' | |
9881 target="_blank"></a> | |
9882 </td> | |
9883 <td class='DevStatusBox'> | |
9884 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16401", event); return false;' | |
9885 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216401' | |
9886 target="_blank"></a> | |
9887 </td> | |
9888 <td class='DevStatusBox'> | |
9889 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12816", event); return false;' | |
9890 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312816' | |
9891 target="_blank"></a> | |
9892 </td> | |
9893 <td class='DevStatusBox'> | |
9894 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4893", event); return false;' | |
9895 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14893' | |
9896 target="_blank"></a> | |
9897 </td> | |
9898 <td class='DevStatusBox'> | |
9899 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4293", event); return false;' | |
9900 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24293' | |
9901 target="_blank"></a> | |
9902 </td> | |
9903 <td class='DevStatusBox'> | |
9904 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4306", event); return false;' | |
9905 title='Win7 Tests (3) build successful' class='DevStatusBox succe
ss TagWin7Tests34306' | |
9906 target="_blank"></a> | |
9907 </td> | |
9908 <td class='DevStatusBox'> | |
9909 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17778", event); return false;' | |
9910 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17778' | |
9911 target="_blank"></a> | |
9912 </td> | |
9913 <td class='DevStatusBox'> | |
9914 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23383", event); return false;' | |
9915 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23383' | |
9916 target="_blank"></a> | |
9917 </td> | |
9918 <td class='DevStatusBox'> | |
9919 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26298", event); return false;' | |
9920 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426298' | |
9921 target="_blank"></a> | |
9922 </td> | |
9923 <td class='DevStatusBox'> | |
9924 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23584", event); return false;' | |
9925 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623584' | |
9926 target="_blank"></a> | |
9927 </td> | |
9928 <td class='DevStatusBox'> | |
9929 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24934", event); return false;' | |
9930 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724934' | |
9931 target="_blank"></a> | |
9932 </td> | |
9933 <td class='DevStatusBox'> | |
9934 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24368", event); return false;' | |
9935 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824368' | |
9936 target="_blank"></a> | |
9937 </td> | |
9938 <td class='DevStatusBox'> | |
9939 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17640", event); return false;' | |
9940 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17640' | |
9941 target="_blank"></a> | |
9942 </td> | |
9943 <td class='DevStatusBox'> | |
9944 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27227", event); return false;' | |
9945 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27227' | |
9946 target="_blank"></a> | |
9947 </td> | |
9948 <td class='DevStatusBox'> | |
9949 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19602", event); return false;' | |
9950 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119602' | |
9951 target="_blank"></a> | |
9952 </td> | |
9953 <td class='DevStatusBox'> | |
9954 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14550", event); return false;' | |
9955 title='XP Tests (dbg)(2) build successful' class='DevStatusBox su
ccess TagXPTestsdbg214550' | |
9956 target="_blank"></a> | |
9957 </td> | |
9958 <td class='DevStatusBox'> | |
9959 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
9960 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
9961 target="_blank"></a> | |
9962 </td> | |
9963 <td class='DevStatusBox'> | |
9964 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14470", event); return false;' | |
9965 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414470' | |
9966 target="_blank"></a> | |
9967 </td> | |
9968 <td class='DevStatusBox'> | |
9969 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
9970 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
9971 target="_blank"></a> | |
9972 </td> | |
9973 <td class='DevStatusBox'> | |
9974 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9108", event); return false;' | |
9975 title='XP Tests (dbg)(6) build successful' class='DevStatusBox su
ccess TagXPTestsdbg69108' | |
9976 target="_blank"></a> | |
9977 </td> | |
9978 <td class='DevStatusBox'> | |
9979 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4960", event); return false;' | |
9980 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14960' | |
9981 target="_blank"></a> | |
9982 </td> | |
9983 <td class='DevStatusBox'> | |
9984 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3586", event); return false;' | |
9985 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23586' | |
9986 target="_blank"></a> | |
9987 </td> | |
9988 <td class='DevStatusBox'> | |
9989 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3844", event); return false;' | |
9990 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33844' | |
9991 target="_blank"></a> | |
9992 </td> | |
9993 <td class='DevStatusBox'> | |
9994 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3869", event); return false;' | |
9995 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43869' | |
9996 target="_blank"></a> | |
9997 </td> | |
9998 <td class='DevStatusBox'> | |
9999 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3861", event); return false;' | |
10000 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53861' | |
10001 target="_blank"></a> | |
10002 </td> | |
10003 <td class='DevStatusBox'> | |
10004 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3889", event); return false;' | |
10005 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63889' | |
10006 target="_blank"></a> | |
10007 </td> | |
10008 <td class='DevStatusBox'> | |
10009 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21447", event); return false;' | |
10010 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox failure TagInteractiveTestsdbg21447' | |
10011 target="_blank"></a> | |
10012 </td> | |
10013 <td class='DevStatusBox'> | |
10014 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7994", event); return false;' | |
10015 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7994' | |
10016 target="_blank"></a> | |
10017 </td> | |
10018 | |
10019 </tr> | |
10020 </table> | |
10021 </td> | |
10022 <td class='DevStatus Alt '> | |
10023 <table width="100%"> | |
10024 <tr> | |
10025 <td class='DevStatusBox'> | |
10026 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33130", event); return false;' | |
10027 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33130' | |
10028 target="_blank"></a> | |
10029 </td> | |
10030 <td class='DevStatusBox'> | |
10031 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16784", event); return false;' | |
10032 title='Mac10.5 Tests (1) build successful' class='DevStatusBox su
ccess TagMac105Tests116784' | |
10033 target="_blank"></a> | |
10034 </td> | |
10035 <td class='DevStatusBox'> | |
10036 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13821", event); return false;' | |
10037 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213821' | |
10038 target="_blank"></a> | |
10039 </td> | |
10040 <td class='DevStatusBox'> | |
10041 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10228", event); return false;' | |
10042 title='Mac10.5 Tests (3) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests310228' | |
10043 target="_blank"></a> | |
10044 </td> | |
10045 <td class='DevStatusBox'> | |
10046 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18423", event); return false;' | |
10047 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118423' | |
10048 target="_blank"></a> | |
10049 </td> | |
10050 <td class='DevStatusBox'> | |
10051 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14327", event); return false;' | |
10052 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214327' | |
10053 target="_blank"></a> | |
10054 </td> | |
10055 <td class='DevStatusBox'> | |
10056 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11465", event); return false;' | |
10057 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311465' | |
10058 target="_blank"></a> | |
10059 </td> | |
10060 <td class='DevStatusBox'> | |
10061 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15137", event); return false;' | |
10062 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15137' | |
10063 target="_blank"></a> | |
10064 </td> | |
10065 <td class='DevStatusBox'> | |
10066 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17634", event); return false;' | |
10067 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17634' | |
10068 target="_blank"></a> | |
10069 </td> | |
10070 <td class='DevStatusBox'> | |
10071 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16568", event); return false;' | |
10072 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116568' | |
10073 target="_blank"></a> | |
10074 </td> | |
10075 <td class='DevStatusBox'> | |
10076 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
10077 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
10078 target="_blank"></a> | |
10079 </td> | |
10080 <td class='DevStatusBox'> | |
10081 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16182", event); return false;' | |
10082 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316182' | |
10083 target="_blank"></a> | |
10084 </td> | |
10085 <td class='DevStatusBox'> | |
10086 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
10087 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
10088 target="_blank"></a> | |
10089 </td> | |
10090 <td class='DevStatusBox'> | |
10091 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
10092 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
10093 target="_blank"></a> | |
10094 </td> | |
10095 <td class='DevStatusBox'> | |
10096 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18492", event); return false;' | |
10097 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218492' | |
10098 target="_blank"></a> | |
10099 </td> | |
10100 <td class='DevStatusBox'> | |
10101 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
10102 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
10103 target="_blank"></a> | |
10104 </td> | |
10105 <td class='DevStatusBox'> | |
10106 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8491", event); return false;' | |
10107 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48491' | |
10108 target="_blank"></a> | |
10109 </td> | |
10110 | |
10111 </tr> | |
10112 </table> | |
10113 </td> | |
10114 <td class='DevStatus Alt '> | |
10115 <table width="100%"> | |
10116 <tr> | |
10117 <td class='DevStatusBox'> | |
10118 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38943", event); return false;' | |
10119 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438943' | |
10120 target="_blank"></a> | |
10121 </td> | |
10122 <td class='DevStatusBox'> | |
10123 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19235", event); return false;' | |
10124 title='Linux Tests x64 build successful' class='DevStatusBox succ
ess TagLinuxTestsx6419235' | |
10125 target="_blank"></a> | |
10126 </td> | |
10127 <td class='DevStatusBox'> | |
10128 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20260", event); return false;' | |
10129 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20260' | |
10130 target="_blank"></a> | |
10131 </td> | |
10132 <td class='DevStatusBox'> | |
10133 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23429", event); return false;' | |
10134 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23429' | |
10135 target="_blank"></a> | |
10136 </td> | |
10137 <td class='DevStatusBox'> | |
10138 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
10139 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
10140 target="_blank"></a> | |
10141 </td> | |
10142 <td class='DevStatusBox'> | |
10143 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18447", event); return false;' | |
10144 title='Linux Tests (dbg)(2) failed base_unittests' class='DevStat
usBox failure TagLinuxTestsdbg218447' | |
10145 target="_blank"></a> | |
10146 </td> | |
10147 <td class='DevStatusBox'> | |
10148 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20271", event); return false;' | |
10149 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20271' | |
10150 target="_blank"></a> | |
10151 </td> | |
10152 <td class='DevStatusBox'> | |
10153 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5715", event); return false;' | |
10154 title='Linux Tests (dbg)(shared) build successful' class='DevStat
usBox success TagLinuxTestsdbgshared5715' | |
10155 target="_blank"></a> | |
10156 </td> | |
10157 <td class='DevStatusBox'> | |
10158 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22070", event); return false;' | |
10159 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22070' | |
10160 target="_blank"></a> | |
10161 </td> | |
10162 | |
10163 </tr> | |
10164 </table> | |
10165 </td> | |
10166 <td class='DevStatus Alt DevStatusCollapse'> | |
10167 <table width="100%"> | |
10168 <tr> | |
10169 <td class='DevStatusBox'> | |
10170 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2887", event); return false;' | |
10171 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2887' | |
10172 target="_blank"></a> | |
10173 </td> | |
10174 | |
10175 </tr> | |
10176 </table> | |
10177 </td> | |
10178 </tr> | |
10179 | |
10180 <tr> | |
10181 <td colspan="7" class='DevComment Alt'> | |
10182 roll rlz 87:94<br/><br/>88: Add a ReadProductEvents() method to RlzValueSt
ore.<br/>89: Change return type of GetProductEventsAsCgiHelper() from DWORD to b
ool.<br/>90-94: Change SupplementalBranding from wchar_t to char.<br/><br/>BUG=4
6579<br/>TEST=none<br/><br/>Review URL: https://chromiumcodereview.appspot.com/9
704089 | |
10183 </td> | |
10184 </tr> | |
10185 | |
10186 <tr> | |
10187 <td colspan="7" class='DevDetails Alt'> | |
10188 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
10189 <li>Linux: compile failed - <a href="console/../builders/Linux
/builds/21366/steps/compile/logs/stdio"> stdio </a></li> | |
10190 <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakine
ss dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg
%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="c
onsole/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactiv
e_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a>
</li> | |
10191 <li>Mac10.5 Tests (3): browser_tests 2 flaky failed 1 Flakiness da
shboard - <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> | |
10192 <li>Linux Tests (dbg)(2): base_unittests 4 disabled failed 1 Flaki
ness dashboard - <a href="console/../builders/Linux%20Tests%20%28dbg%29%
282%29/builds/18447/steps/base_unittests/logs/stdio"> stdio </a> - <a href="cons
ole/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittes
ts/logs/Tasks"> Tasks </a></li> | |
10193 </ul> | |
10194 </td> | |
10195 </tr> | |
10196 | |
10197 | |
10198 <tr class='DevStatusSpacing'> | |
10199 <td> | |
10200 </td> | |
10201 </tr> | |
10202 | |
10203 <tr> | |
10204 <td class='DevRev DevRevCollapse' width="1%"> | |
10205 <a href="http://src.chromium.org/viewvc/chrome?view=rev&revision=127209" t
arget="_blank">127209</a> | |
10206 </td> | |
10207 <td class='DevName ' width="1%"> | |
10208 erikwright<span style="display:none">ohnoyoudont</span>@chromium.org | |
10209 </td> | |
10210 | |
10211 <td class='DevStatus '> | |
10212 <table width="100%"> | |
10213 <tr> | |
10214 <td class='DevStatusBox'> | |
10215 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win&number=
9951", event); return false;' | |
10216 title='Win build successful' class='DevStatusBox success TagWin99
51' | |
10217 target="_blank"></a> | |
10218 </td> | |
10219 <td class='DevStatusBox'> | |
10220 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac&number=
12580", event); return false;' | |
10221 title='Mac build successful' class='DevStatusBox success TagMac12
580' | |
10222 target="_blank"></a> | |
10223 </td> | |
10224 <td class='DevStatusBox'> | |
10225 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux&numbe
r=21366", event); return false;' | |
10226 title='Linux failed compile' class='DevStatusBox failure TagLinux
21366' | |
10227 target="_blank"></a> | |
10228 </td> | |
10229 <td class='DevStatusBox'> | |
10230 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20x64
&number=25043", event); return false;' | |
10231 title='Linux x64 build successful' class='DevStatusBox success Ta
gLinuxx6425043' | |
10232 target="_blank"></a> | |
10233 </td> | |
10234 | |
10235 </tr> | |
10236 </table> | |
10237 </td> | |
10238 <td class='DevStatus '> | |
10239 <table width="100%"> | |
10240 <tr> | |
10241 <td class='DevStatusBox'> | |
10242 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er&number=25918", event); return false;' | |
10243 title='Win Builder build successful' class='DevStatusBox success
TagWinBuilder25918' | |
10244 target="_blank"></a> | |
10245 </td> | |
10246 <td class='DevStatusBox'> | |
10247 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%281%29&number=13552", event); return false;' | |
10248 title='XP Tests (1) build successful' class='DevStatusBox success
TagXPTests113552' | |
10249 target="_blank"></a> | |
10250 </td> | |
10251 <td class='DevStatusBox'> | |
10252 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%282%29&number=13221", event); return false;' | |
10253 title='XP Tests (2) build successful' class='DevStatusBox success
TagXPTests213221' | |
10254 target="_blank"></a> | |
10255 </td> | |
10256 <td class='DevStatusBox'> | |
10257 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%283%29&number=10079", event); return false;' | |
10258 title='XP Tests (3) build successful' class='DevStatusBox success
TagXPTests310079' | |
10259 target="_blank"></a> | |
10260 </td> | |
10261 <td class='DevStatusBox'> | |
10262 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%281%29&number=17517", event); return false;' | |
10263 title='Vista Tests (1) build successful' class='DevStatusBox succ
ess TagVistaTests117517' | |
10264 target="_blank"></a> | |
10265 </td> | |
10266 <td class='DevStatusBox'> | |
10267 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%282%29&number=16401", event); return false;' | |
10268 title='Vista Tests (2) build successful' class='DevStatusBox succ
ess TagVistaTests216401' | |
10269 target="_blank"></a> | |
10270 </td> | |
10271 <td class='DevStatusBox'> | |
10272 <a href='#' onclick='showBuildBox("./buildstatus?builder=Vista%20Tes
ts%20%283%29&number=12816", event); return false;' | |
10273 title='Vista Tests (3) build successful' class='DevStatusBox succ
ess TagVistaTests312816' | |
10274 target="_blank"></a> | |
10275 </td> | |
10276 <td class='DevStatusBox'> | |
10277 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%281%29&number=4893", event); return false;' | |
10278 title='Win7 Tests (1) build successful' class='DevStatusBox succe
ss TagWin7Tests14893' | |
10279 target="_blank"></a> | |
10280 </td> | |
10281 <td class='DevStatusBox'> | |
10282 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%282%29&number=4292", event); return false;' | |
10283 title='Win7 Tests (2) build successful' class='DevStatusBox succe
ss TagWin7Tests24292' | |
10284 target="_blank"></a> | |
10285 </td> | |
10286 <td class='DevStatusBox'> | |
10287 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%283%29&number=4305", event); return false;' | |
10288 title='Win7 Tests (3) build successful' class='DevStatusBox succe
ss TagWin7Tests34305' | |
10289 target="_blank"></a> | |
10290 </td> | |
10291 <td class='DevStatusBox'> | |
10292 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Sync
&number=17778", event); return false;' | |
10293 title='Win7 Sync build successful' class='DevStatusBox success Ta
gWin7Sync17778' | |
10294 target="_blank"></a> | |
10295 </td> | |
10296 <td class='DevStatusBox'> | |
10297 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s&number=23382", event); return false;' | |
10298 title='NACL Tests build successful' class='DevStatusBox success T
agNACLTests23382' | |
10299 target="_blank"></a> | |
10300 </td> | |
10301 <td class='DevStatusBox'> | |
10302 <a href='#' onclick='showBuildBox("./buildstatus?builder=NACL%20Test
s%20%28x64%29&number=26297", event); return false;' | |
10303 title='NACL Tests (x64) build successful' class='DevStatusBox suc
cess TagNACLTestsx6426297' | |
10304 target="_blank"></a> | |
10305 </td> | |
10306 <td class='DevStatusBox'> | |
10307 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie6%29&number=23583", event); return false;' | |
10308 title='Chrome Frame Tests (ie6) build successful' class='DevStatu
sBox success TagChromeFrameTestsie623583' | |
10309 target="_blank"></a> | |
10310 </td> | |
10311 <td class='DevStatusBox'> | |
10312 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie7%29&number=24933", event); return false;' | |
10313 title='Chrome Frame Tests (ie7) build successful' class='DevStatu
sBox success TagChromeFrameTestsie724933' | |
10314 target="_blank"></a> | |
10315 </td> | |
10316 <td class='DevStatusBox'> | |
10317 <a href='#' onclick='showBuildBox("./buildstatus?builder=Chrome%20Fr
ame%20Tests%20%28ie8%29&number=24367", event); return false;' | |
10318 title='Chrome Frame Tests (ie8) build successful' class='DevStatu
sBox success TagChromeFrameTestsie824367' | |
10319 target="_blank"></a> | |
10320 </td> | |
10321 <td class='DevStatusBox'> | |
10322 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%202010%20%28dbg%29&number=17639", event); return false;' | |
10323 title='Win Builder 2010 (dbg) build successful' class='DevStatusB
ox success TagWinBuilder2010dbg17639' | |
10324 target="_blank"></a> | |
10325 </td> | |
10326 <td class='DevStatusBox'> | |
10327 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Build
er%20%28dbg%29&number=27226", event); return false;' | |
10328 title='Win Builder (dbg) build successful' class='DevStatusBox su
ccess TagWinBuilderdbg27226' | |
10329 target="_blank"></a> | |
10330 </td> | |
10331 <td class='DevStatusBox'> | |
10332 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%281%29&number=19601", event); return false;' | |
10333 title='XP Tests (dbg)(1) build successful' class='DevStatusBox su
ccess TagXPTestsdbg119601' | |
10334 target="_blank"></a> | |
10335 </td> | |
10336 <td class='DevStatusBox'> | |
10337 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%282%29&number=14550", event); return false;' | |
10338 title='XP Tests (dbg)(2) build successful' class='DevStatusBox su
ccess TagXPTestsdbg214550' | |
10339 target="_blank"></a> | |
10340 </td> | |
10341 <td class='DevStatusBox'> | |
10342 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%283%29&number=15770", event); return false;' | |
10343 title='XP Tests (dbg)(3) build successful' class='DevStatusBox su
ccess TagXPTestsdbg315770' | |
10344 target="_blank"></a> | |
10345 </td> | |
10346 <td class='DevStatusBox'> | |
10347 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%284%29&number=14470", event); return false;' | |
10348 title='XP Tests (dbg)(4) build successful' class='DevStatusBox su
ccess TagXPTestsdbg414470' | |
10349 target="_blank"></a> | |
10350 </td> | |
10351 <td class='DevStatusBox'> | |
10352 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%285%29&number=12206", event); return false;' | |
10353 title='XP Tests (dbg)(5) build successful' class='DevStatusBox su
ccess TagXPTestsdbg512206' | |
10354 target="_blank"></a> | |
10355 </td> | |
10356 <td class='DevStatusBox'> | |
10357 <a href='#' onclick='showBuildBox("./buildstatus?builder=XP%20Tests%
20%28dbg%29%286%29&number=9108", event); return false;' | |
10358 title='XP Tests (dbg)(6) build successful' class='DevStatusBox su
ccess TagXPTestsdbg69108' | |
10359 target="_blank"></a> | |
10360 </td> | |
10361 <td class='DevStatusBox'> | |
10362 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%281%29&number=4960", event); return false;' | |
10363 title='Win7 Tests (dbg)(1) build successful' class='DevStatusBox
success TagWin7Testsdbg14960' | |
10364 target="_blank"></a> | |
10365 </td> | |
10366 <td class='DevStatusBox'> | |
10367 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%282%29&number=3586", event); return false;' | |
10368 title='Win7 Tests (dbg)(2) build successful' class='DevStatusBox
success TagWin7Testsdbg23586' | |
10369 target="_blank"></a> | |
10370 </td> | |
10371 <td class='DevStatusBox'> | |
10372 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%283%29&number=3843", event); return false;' | |
10373 title='Win7 Tests (dbg)(3) build successful' class='DevStatusBox
success TagWin7Testsdbg33843' | |
10374 target="_blank"></a> | |
10375 </td> | |
10376 <td class='DevStatusBox'> | |
10377 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%284%29&number=3869", event); return false;' | |
10378 title='Win7 Tests (dbg)(4) build successful' class='DevStatusBox
success TagWin7Testsdbg43869' | |
10379 target="_blank"></a> | |
10380 </td> | |
10381 <td class='DevStatusBox'> | |
10382 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%285%29&number=3861", event); return false;' | |
10383 title='Win7 Tests (dbg)(5) build successful' class='DevStatusBox
success TagWin7Testsdbg53861' | |
10384 target="_blank"></a> | |
10385 </td> | |
10386 <td class='DevStatusBox'> | |
10387 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win7%20Test
s%20%28dbg%29%286%29&number=3888", event); return false;' | |
10388 title='Win7 Tests (dbg)(6) build successful' class='DevStatusBox
success TagWin7Testsdbg63888' | |
10389 target="_blank"></a> | |
10390 </td> | |
10391 <td class='DevStatusBox'> | |
10392 <a href='#' onclick='showBuildBox("./buildstatus?builder=Interactive
%20Tests%20%28dbg%29&number=21447", event); return false;' | |
10393 title='Interactive Tests (dbg) failed interactive_ui_tests' class
='DevStatusBox failure TagInteractiveTestsdbg21447' | |
10394 target="_blank"></a> | |
10395 </td> | |
10396 <td class='DevStatusBox'> | |
10397 <a href='#' onclick='showBuildBox("./buildstatus?builder=Win%20Aura&
number=7993", event); return false;' | |
10398 title='Win Aura build successful' class='DevStatusBox success Tag
WinAura7993' | |
10399 target="_blank"></a> | |
10400 </td> | |
10401 | |
10402 </tr> | |
10403 </table> | |
10404 </td> | |
10405 <td class='DevStatus '> | |
10406 <table width="100%"> | |
10407 <tr> | |
10408 <td class='DevStatusBox'> | |
10409 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er&number=33130", event); return false;' | |
10410 title='Mac Builder build successful' class='DevStatusBox success
TagMacBuilder33130' | |
10411 target="_blank"></a> | |
10412 </td> | |
10413 <td class='DevStatusBox'> | |
10414 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%281%29&number=16784", event); return false;' | |
10415 title='Mac10.5 Tests (1) build successful' class='DevStatusBox su
ccess TagMac105Tests116784' | |
10416 target="_blank"></a> | |
10417 </td> | |
10418 <td class='DevStatusBox'> | |
10419 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%282%29&number=13821", event); return false;' | |
10420 title='Mac10.5 Tests (2) build successful' class='DevStatusBox su
ccess TagMac105Tests213821' | |
10421 target="_blank"></a> | |
10422 </td> | |
10423 <td class='DevStatusBox'> | |
10424 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.5%20T
ests%20%283%29&number=10228", event); return false;' | |
10425 title='Mac10.5 Tests (3) failed browser_tests' class='DevStatusBo
x failure TagMac105Tests310228' | |
10426 target="_blank"></a> | |
10427 </td> | |
10428 <td class='DevStatusBox'> | |
10429 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%281%29&number=18423", event); return false;' | |
10430 title='Mac10.6 Tests (1) build successful' class='DevStatusBox su
ccess TagMac106Tests118423' | |
10431 target="_blank"></a> | |
10432 </td> | |
10433 <td class='DevStatusBox'> | |
10434 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%282%29&number=14327", event); return false;' | |
10435 title='Mac10.6 Tests (2) build successful' class='DevStatusBox su
ccess TagMac106Tests214327' | |
10436 target="_blank"></a> | |
10437 </td> | |
10438 <td class='DevStatusBox'> | |
10439 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20T
ests%20%283%29&number=11465", event); return false;' | |
10440 title='Mac10.6 Tests (3) build successful' class='DevStatusBox su
ccess TagMac106Tests311465' | |
10441 target="_blank"></a> | |
10442 </td> | |
10443 <td class='DevStatusBox'> | |
10444 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac10.6%20S
ync&number=15137", event); return false;' | |
10445 title='Mac10.6 Sync build successful' class='DevStatusBox success
TagMac106Sync15137' | |
10446 target="_blank"></a> | |
10447 </td> | |
10448 <td class='DevStatusBox'> | |
10449 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%20Build
er%20%28dbg%29&number=17634", event); return false;' | |
10450 title='Mac Builder (dbg) build successful' class='DevStatusBox su
ccess TagMacBuilderdbg17634' | |
10451 target="_blank"></a> | |
10452 </td> | |
10453 <td class='DevStatusBox'> | |
10454 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%281%29&number=16568", event); return false;' | |
10455 title='Mac 10.5 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac105Testsdbg116568' | |
10456 target="_blank"></a> | |
10457 </td> | |
10458 <td class='DevStatusBox'> | |
10459 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%282%29&number=16287", event); return false;' | |
10460 title='Mac 10.5 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac105Testsdbg216287' | |
10461 target="_blank"></a> | |
10462 </td> | |
10463 <td class='DevStatusBox'> | |
10464 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%283%29&number=16182", event); return false;' | |
10465 title='Mac 10.5 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac105Testsdbg316182' | |
10466 target="_blank"></a> | |
10467 </td> | |
10468 <td class='DevStatusBox'> | |
10469 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.5%
20Tests%20%28dbg%29%284%29&number=7421", event); return false;' | |
10470 title='Mac 10.5 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac105Testsdbg47421' | |
10471 target="_blank"></a> | |
10472 </td> | |
10473 <td class='DevStatusBox'> | |
10474 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%281%29&number=19177", event); return false;' | |
10475 title='Mac 10.6 Tests (dbg)(1) build successful' class='DevStatus
Box success TagMac106Testsdbg119177' | |
10476 target="_blank"></a> | |
10477 </td> | |
10478 <td class='DevStatusBox'> | |
10479 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%282%29&number=18492", event); return false;' | |
10480 title='Mac 10.6 Tests (dbg)(2) build successful' class='DevStatus
Box success TagMac106Testsdbg218492' | |
10481 target="_blank"></a> | |
10482 </td> | |
10483 <td class='DevStatusBox'> | |
10484 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%283%29&number=17462", event); return false;' | |
10485 title='Mac 10.6 Tests (dbg)(3) build successful' class='DevStatus
Box success TagMac106Testsdbg317462' | |
10486 target="_blank"></a> | |
10487 </td> | |
10488 <td class='DevStatusBox'> | |
10489 <a href='#' onclick='showBuildBox("./buildstatus?builder=Mac%2010.6%
20Tests%20%28dbg%29%284%29&number=8491", event); return false;' | |
10490 title='Mac 10.6 Tests (dbg)(4) build successful' class='DevStatus
Box success TagMac106Testsdbg48491' | |
10491 target="_blank"></a> | |
10492 </td> | |
10493 | |
10494 </tr> | |
10495 </table> | |
10496 </td> | |
10497 <td class='DevStatus '> | |
10498 <table width="100%"> | |
10499 <tr> | |
10500 <td class='DevStatusBox'> | |
10501 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20x64&number=38942", event); return false;' | |
10502 title='Linux Builder x64 build successful' class='DevStatusBox su
ccess TagLinuxBuilderx6438942' | |
10503 target="_blank"></a> | |
10504 </td> | |
10505 <td class='DevStatusBox'> | |
10506 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20x64&number=19235", event); return false;' | |
10507 title='Linux Tests x64 build successful' class='DevStatusBox succ
ess TagLinuxTestsx6419235' | |
10508 target="_blank"></a> | |
10509 </td> | |
10510 <td class='DevStatusBox'> | |
10511 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Syn
c&number=20260", event); return false;' | |
10512 title='Linux Sync build successful' class='DevStatusBox success T
agLinuxSync20260' | |
10513 target="_blank"></a> | |
10514 </td> | |
10515 <td class='DevStatusBox'> | |
10516 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29&number=23429", event); return false;' | |
10517 title='Linux Builder (dbg) build successful' class='DevStatusBox
success TagLinuxBuilderdbg23429' | |
10518 target="_blank"></a> | |
10519 </td> | |
10520 <td class='DevStatusBox'> | |
10521 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%281%29&number=15899", event); return false;' | |
10522 title='Linux Tests (dbg)(1) build successful' class='DevStatusBox
success TagLinuxTestsdbg115899' | |
10523 target="_blank"></a> | |
10524 </td> | |
10525 <td class='DevStatusBox'> | |
10526 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%282%29&number=18447", event); return false;' | |
10527 title='Linux Tests (dbg)(2) failed base_unittests' class='DevStat
usBox failure TagLinuxTestsdbg218447' | |
10528 target="_blank"></a> | |
10529 </td> | |
10530 <td class='DevStatusBox'> | |
10531 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Bui
lder%20%28dbg%29%28shared%29&number=20270", event); return false;' | |
10532 title='Linux Builder (dbg)(shared) build successful' class='DevSt
atusBox success TagLinuxBuilderdbgshared20270' | |
10533 target="_blank"></a> | |
10534 </td> | |
10535 <td class='DevStatusBox'> | |
10536 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Tes
ts%20%28dbg%29%28shared%29&number=5715", event); return false;' | |
10537 title='Linux Tests (dbg)(shared) build successful' class='DevStat
usBox success TagLinuxTestsdbgshared5715' | |
10538 target="_blank"></a> | |
10539 </td> | |
10540 <td class='DevStatusBox'> | |
10541 <a href='#' onclick='showBuildBox("./buildstatus?builder=Linux%20Cla
ng%20%28dbg%29&number=22070", event); return false;' | |
10542 title='Linux Clang (dbg) build successful' class='DevStatusBox su
ccess TagLinuxClangdbg22070' | |
10543 target="_blank"></a> | |
10544 </td> | |
10545 | |
10546 </tr> | |
10547 </table> | |
10548 </td> | |
10549 <td class='DevStatus DevStatusCollapse'> | |
10550 <table width="100%"> | |
10551 <tr> | |
10552 <td class='DevStatusBox'> | |
10553 <a href='#' onclick='showBuildBox("./buildstatus?builder=Android%20B
uilder&number=2886", event); return false;' | |
10554 title='Android Builder build successful' class='DevStatusBox succ
ess TagAndroidBuilder2886' | |
10555 target="_blank"></a> | |
10556 </td> | |
10557 | |
10558 </tr> | |
10559 </table> | |
10560 </td> | |
10561 </tr> | |
10562 | |
10563 <tr> | |
10564 <td colspan="7" class='DevComment '> | |
10565 Update net/base/cookie_*.h includes to net/cookies/cookie_*.h .<br/><br/>O
nce 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/970605
6 | |
10566 </td> | |
10567 </tr> | |
10568 | |
10569 <tr> | |
10570 <td colspan="7" class='DevDetails '> | |
10571 <ul style='margin: 0px; padding: 0 0 0 1.5em;'> | |
10572 <li>Linux: compile failed - <a href="console/../builders/Linux
/builds/21366/steps/compile/logs/stdio"> stdio </a></li> | |
10573 <li>Interactive Tests (dbg): interactive_ui_tests failed 1 Flakine
ss dashboard - <a href="console/../builders/Interactive%20Tests%20%28dbg
%29/builds/21447/steps/interactive_ui_tests/logs/stdio"> stdio </a> - <a href="c
onsole/../builders/Interactive%20Tests%20%28dbg%29/builds/21447/steps/interactiv
e_ui_tests/logs/CreateInactiveSwitchToActive"> CreateInactiveSwitchToActive </a>
</li> | |
10574 <li>Mac10.5 Tests (3): browser_tests 2 flaky failed 1 Flakiness da
shboard - <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> | |
10575 <li>Linux Tests (dbg)(2): base_unittests 4 disabled failed 1 Flaki
ness dashboard - <a href="console/../builders/Linux%20Tests%20%28dbg%29%
282%29/builds/18447/steps/base_unittests/logs/stdio"> stdio </a> - <a href="cons
ole/../builders/Linux%20Tests%20%28dbg%29%282%29/builds/18447/steps/base_unittes
ts/logs/Tasks"> Tasks </a></li> | |
10576 </ul> | |
10577 </td> | |
10578 </tr> | |
10579 | |
10580 | |
10581 <tr class='DevStatusSpacing'> | |
10582 <td> | |
10583 </td> | |
10584 </tr> | |
10585 | |
10586 </table> | |
10587 </div> | |
10588 | |
10589 | |
10590 <div id="divBox" onmouseout="if (checkMouseLeave(this, event)) this.style.displa
y = 'None'" class="BuildWaterfall"> | |
10591 </div> | |
10592 | |
10593 | |
10594 <iframe id="frameBox" style="display: none;"></iframe> | |
10595 | |
10596 <script type="text/javascript"> | |
10597 // replace 'onload="updateDiv(event);" with this, as iframe doesn't have onload
event in xhtml | |
10598 window.addEventListener("load", function() { | |
10599 document.getElementById('frameBox').onload = function(event) { | |
10600 updateDiv(event); | |
10601 }; | |
10602 }, false); | |
10603 </script> | |
10604 | |
10605 </div><div class="footer" style="clear:both"> | |
10606 <hr/> | |
10607 [ <a class='collapse' href='#' OnClick='collapse(); return false;'>collapse</a
> | |
10608 <a class='uncollapse' href='#' OnClick='uncollapse(); return false;'>un-collap
se</a> | |
10609 <a class='merge' href="#" OnClick="merge(); return false;">merge</a> | |
10610 <a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return f
alse;">un-merge</a> ] | |
10611 <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> | |
10612 </div> | |
10613 </body> | |
10614 </html> | |
OLD | NEW |