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

Unified Diff: tests/test_fetch_console/expected.html

Issue 10448057: Add refresh support to the console page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/test_fetch_console/expected.html
diff --git a/tests/test_console_handler/console-expected.html b/tests/test_fetch_console/expected.html
similarity index 97%
copy from tests/test_console_handler/console-expected.html
copy to tests/test_fetch_console/expected.html
index 50ecbd455dd1d428459ef3af1c378fa14d92502b..0e479f9d17781a46e8189c6c0699416d5d3bb93d 100644
--- a/tests/test_console_handler/console-expected.html
+++ b/tests/test_fetch_console/expected.html
@@ -1,310 +1,4 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="refresh" content="9999999999"/>
- <title>BuildBot: Chromium</title>
- <link rel="stylesheet" href="default.css" type="text/css" />
- <link rel="alternate" type="application/rss+xml" title="RSS" href="rss">
-
-<script type='text/javascript'>
-// <![CDATA[
-//
-
-//
-// Functions used to display the build status bubble on box click.
-//
-
-// show the build status box. This is called when the user clicks on a block.
-function showBuildBox(url, event) {
- // Find the current curson position.
- var cursorPosTop = (window.event ? window.event.clientY : event.pageY)
- var cursorPosLeft = (window.event ? window.event.clientX : event.pageX)
-
- // Offset the position by 5, to make the window appears under the cursor.
- cursorPosTop = cursorPosTop + document.body.scrollTop -5 ;
- cursorPosLeft = cursorPosLeft + document.body.scrollLeft - 5;
-
- // Move the div (hidden) under the cursor.
- var divBox = document.getElementById('divBox');
- divBox.style.top = parseInt(cursorPosTop) + 'px';
- divBox.style.left = parseInt(cursorPosLeft) + 'px';
-
- // Reload the hidden frame with the build page we want to show.
- // The onload even on this frame will update the div and make it visible.
- document.getElementById("frameBox").src = url
-
- // We don't want to reload the page.
- return false;
-}
-
-// OnLoad handler for the iframe containing the build to show.
-function updateDiv(event) {
- // Get the frame innerHTML.
- var iframeContent = document.getElementById("frameBox").contentWindow.document.body.innerHTML;
-
- // If there is any content, update the div, and make it visible.
- if (iframeContent) {
- var divBox = document.getElementById('divBox');
- divBox.innerHTML = iframeContent ;
- divBox.style.display = "block";
- }
-}
-
-// Util functions to know if an element is contained inside another element.
-// We use this to know when we mouse out our build status div.
-function containsDOM (container, containee) {
- var isParent = false;
- do {
- if ((isParent = container == containee))
- break;
- containee = containee.parentNode;
- } while (containee != null);
-
- return isParent;
-}
-
-// OnMouseOut handler. Returns true if the mouse moved out of the element.
-// It is false if the mouse is still in the element, but in a blank part of it,
-// like in an empty table cell.
-function checkMouseLeave(element, event) {
- if (element.contains && event.toElement) {
- return !element.contains(event.toElement);
- }
- else if (event.relatedTarget) {
- return !containsDOM(element, event.relatedTarget);
- }
-}
-
-// Creates a new cookie.
-function createCookie(name, value, day) {
- var date = new Date();
- date.setTime(date.getTime() + (day * 24 * 60 * 60 * 1000));
- var expires = "; expires=" + date.toGMTString();
- document.cookie = name + "=" + value+expires + "; path=/";
-}
-
-// Returns the vaue of a cookie, or null if it does not exist.
-function readCookie(name) {
- var begin = name + "=";
- var data = document.cookie.split(';');
- for(var i = 0; i < data.length; i++) {
- var cookie = data[i];
- while (cookie.charAt(0) == ' ')
- cookie = cookie.substring(1, cookie.length);
- if (cookie.indexOf(begin) == 0)
- return cookie.substring(begin.length, cookie.length);
- }
-
- return null;
-}
-
-// Deletes a cookie.
-function eraseCookie(name) {
- createCookie(name, "", -1);
-}
-
-// Hides all "details" and "comments" section.
-function collapse() {
- // Hide all Comments sections.
- var comments = document.querySelectorAll('.DevComment');
- for(var i = 0; i < comments.length; i++) {
- comments[i].style.display = "none";
- }
-
- // Hide all details sections.
- var details = document.querySelectorAll('.DevDetails');
- for(var i = 0; i < details.length; i++) {
- details[i].style.display = "none";
- }
-
- // Fix the rounding on the Revision box. (Lower right corner must be round)
- var revisions = document.querySelectorAll('.DevRev');
- for(var i = 0; i < revisions.length; i++) {
- revisions[i].className = revisions[i].className + ' DevRevCollapse';
- }
-
- // Fix the rounding on the last category box. (Lower left corner must be round)
- var status = document.querySelectorAll('.last');
- for(var i = 0; i < status.length; i++) {
- status[i].className = status[i].className + ' DevStatusCollapse';
- }
-
- // Create a cookie to remember that we want the view to be collapsed.
- createCookie('collapsed', 'true', 30)
-
- // Hide the collapse and the unmerge buttons.
- document.querySelectorAll('.collapse')[0].style.display = 'none'
- document.querySelectorAll('.unmerge')[0].style.display = 'none'
-
- // Activate the merge and expand buttons.
- document.querySelectorAll('.uncollapse')[0].style.display = 'inline'
- document.querySelectorAll('.merge')[0].style.display = 'inline'
-}
-
-// Expands the view. This is the opposite of "Collapse"
-function uncollapse() {
- unmerge();
-
- // Make the comments visible.
- var comments = document.querySelectorAll('.DevComment');
- for(var i = 0; i < comments.length; i++) {
- comments[i].style.display = "";
- }
-
- // Make the details visible.
- var details = document.querySelectorAll('.DevDetails');
- for(var i = 0; i < details.length; i++) {
- details[i].style.display = "";
- }
- // Remove the round corner (lower right) for the Revision box.
- var revisions = document.querySelectorAll('.DevRev');
- for(var i = 0; i < revisions.length; i++) {
- revisions[i].className = revisions[i].className.replace('DevRevCollapse', '');
- }
-
- // Remoe the round corner (lower left) for the last category box.
- var status = document.querySelectorAll('.DevStatus');
- for(var i = 0; i < status.length; i++) {
- status[i].className = status[i].className.replace('DevStatusCollapse', '');
- }
-
- // Delete the cookies that say that we want to be collapsed or merged.
- eraseCookie('collapsed')
- eraseCookie('merged')
-
- // Display the "collapse" and "merge" buttons.
- document.querySelectorAll('.collapse')[0].style.display = 'inline'
- document.querySelectorAll('.merge')[0].style.display = 'inline'
-
- // Remove the "uncollapse" and "unmerge" buttons.
- document.querySelectorAll('.uncollapse')[0].style.display = 'none'
- document.querySelectorAll('.unmerge')[0].style.display = 'none'
-}
-
-// Merge all the status boxes together.
-function merge() {
- collapse();
-
- // Hide all the spacing.
- var spacing = document.querySelectorAll('.DevStatusSpacing');
- for(var i = 0; i < spacing.length; i++) {
- spacing[i].style.display = "none";
- }
-
- // Each boxes have, in the className, a tag that uniquely represents the
- // build where this data comes from.
- // Since we want to merge all the boxes coming from the same build, we
- // parse the document to find all the builds, and then, for each build, we
- // concatenate the boxes.
-
- var allTags = [];
- all = document.getElementsByTagName('*')
- for(var i = 0; i < all.length; i++) {
- var element = all[i];
- start = element.className.indexOf('Tag')
- if (start != -1) {
- var className = ""
- end = element.className.indexOf(' ', start)
- if (end != -1) {
- className = element.className.substring(start, end);
- } else {
- className = element.className.substring(start);
- }
- allTags[className] = 1;
- }
- }
-
- // Mergeall tags that we found
- for (i in allTags) {
- var current = document.querySelectorAll('.' + i);
-
- // We do the work only if there is more than 1 box with the same
- // build.
- if (current.length > 1) {
- // Add the noround class to all the boxes.
- for(var i = 0; i < current.length; i++) {
- current[i].className = current[i].className + ' noround';
- }
-
- // Add the begin class to the first box.
- current[0].className = current[0].className + ' begin';
-
- // Add the end class to the last box.
- last = current.length - 1;
- current[last].className = current[last].className + ' end';
- }
- }
-
- // Display the "unmerge" button.
- document.querySelectorAll('.unmerge')[0].style.display = 'inline'
- document.querySelectorAll('.uncollapse')[0].style.display = 'inline'
-
- // Remove the "merge" button.
- document.querySelectorAll('.collapse')[0].style.display = 'none'
- document.querySelectorAll('.merge')[0].style.display = 'none'
-
- // Create a cookie to remember that we want to be merged.
- createCookie('merged', 'true', 30)
-}
-
-// Un-merge the view. This is the opposite of "merge".
-function unmerge() {
- // We put back all the spacing.
- var spacing = document.querySelectorAll('.DevStatusSpacing');
- for(var i = 0; i < spacing.length; i++) {
- spacing[i].style.display = "";
- }
-
- // We remove the class added to all the boxes we modified.
- var noround = document.querySelectorAll('.noround');
- for(var i = 0; i < noround.length; i++) {
- noround[i].className = noround[i].className.replace("begin", '');
- noround[i].className = noround[i].className.replace("end", '');
- noround[i].className = noround[i].className.replace("noround", '');
- }
-
- // Delete the cookie, we don't want to be merged anymore.
- eraseCookie('merged')
-
- // Display the "merge" button.
- document.querySelectorAll('.merge')[0].style.display = 'inline'
-
- // Hide the "unmerge" button.
- document.querySelectorAll('.unmerge')[0].style.display = 'none'
-}
-
-function SetupView() {
- if (readCookie('merged')) {
- merge();
- } else if (readCookie('collapsed')) {
- collapse();
- }
-}
-
-document.addEventListener("DOMContentLoaded", SetupView, false);
-
-// ]]>
-</script>
- </head>
- <body class="interface">
- <div class="header">
- <a href="http://build.chromium.org/p/chromium/.">Home</a>
- - <a href="http://build.chromium.org/p/chromium/waterfall">Waterfall</a>
- <a href="http://build.chromium.org/p/chromium/grid">Grid</a>
- <a href="http://build.chromium.org/p/chromium/tgrid">T-Grid</a>
- <a href="http://build.chromium.org/p/chromium/console">Console</a>
- <a href="http://build.chromium.org/p/chromium/builders">Builders</a>
- <a href="http://build.chromium.org/p/chromium/one_line_per_build">Recent Builds</a>
- <a href="http://build.chromium.org/p/chromium/buildslaves">Buildslaves</a>
- <a href="http://build.chromium.org/p/chromium/changes">Changesources</a>
- - <a href="http://build.chromium.org/p/chromium/json/help">JSON API</a>
- - <a href="http://build.chromium.org/p/chromium/about">About</a>
- </div>
-
-<hr/>
<script>
/**
* Pseudo namespace for chromium - keep it short because we are in a very
@@ -485,13 +179,13 @@ document.addEventListener("DOMContentLoaded", SetupView, false);
<b>Sheriffs:</b>
</td>
<td>
- <script>document.write('sheriff1')</script>,<br>
- <script>document.write('sheriff2')</script>(WebKit),
- <script>document.write('sheriff3')</script>(Memory),
- <script>document.write('sheriff4')</script>(NaCl),<br>
- <script>document.write('sheriff5')</script>(Perf),
- <script>document.write('sheriff6, sheriff7')</script>,
- <script>document.write('sheriff8')</script>(CrOS),<br>
+ <script>None</script>,<br>
M-A Ruel 2012/05/29 18:46:33 That's expected by the unit test?
cmp 2012/05/29 19:38:03 Yes, that's expected. I don't prime the app first
+ <script>None</script>(WebKit),
+ <script>None</script>(Memory),
+ <script>None</script>(NaCl),<br>
+ <script>None</script>(Perf),
+ <script>None</script>,
+ <script>None</script>(CrOS),<br>
<a href="https://www.google.com/calendar/render?cid=google.com_iqfka4i9asiva67vlqqf1es094%40group.calendar.google.com">trooper schedule</a>
</td>
</tr>
@@ -10335,5 +10029,3 @@ window.addEventListener("load", function() {
<a class='merge' href="#" OnClick="merge(); return false;">merge</a>
<a class='unmerge' style='display: none' href="#" OnClick="unmerge(); return false;">un-merge</a> ]
</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698