author | Dão Gottwald <dao@mozilla.com> |
Sun, 24 Jun 2012 22:32:55 +0200 | |
changeset 106442 | d821f6cf3a3f8ebd4b3adfb436c06728ce812374 |
parent 106441 | 03f3f300350c0e4b2ff3a6cdc18a3d718d39978b |
child 106443 | cfdf2b800d8cbd6c83653523ca2158d309150a2a |
push id | 23447 |
push user | danderson@mozilla.com |
push date | Tue, 11 Sep 2012 17:34:27 +0000 |
treeherder | mozilla-central@fdfaef738a00 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 767828 |
milestone | 16.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
browser/components/downloads/test/browser/browser_basic_functionality.js | file | annotate | diff | comparison | revisions | |
content/base/src/nsINode.cpp | file | annotate | diff | comparison | revisions |
--- a/browser/components/downloads/test/browser/browser_basic_functionality.js +++ b/browser/components/downloads/test/browser/browser_basic_functionality.js @@ -31,18 +31,20 @@ function gen_test() // Populate the downloads database with the data required by this test. for (let yy in gen_addDownloadRows(DownloadData)) yield; // Open the user interface and wait for data to be fully loaded. for (let yy in gen_openPanel()) yield; // Test item data and count. This also tests the ordering of the display. let richlistbox = document.getElementById("downloadsListBox"); +/* disabled for failing intermittently (bug 767828) is(richlistbox.children.length, DownloadData.length, "There is the correct number of richlistitems"); +*/ for (let i = 0; i < richlistbox.children.length; i++) { let element = richlistbox.children[i]; let dataItem = new DownloadsViewItemController(element).dataItem; is(dataItem.target, DownloadData[i].name, "Download names match up"); is(dataItem.state, DownloadData[i].state, "Download states match up"); is(dataItem.file, DownloadData[i].target, "Download targets match up"); is(dataItem.uri, DownloadData[i].source, "Download sources match up"); }