Bug 893846: Fix tab.index test intermittent. r=Mossop

This commit is contained in:
Jordan Santell 2013-08-12 10:57:45 -07:00
Родитель 43c994f09e
Коммит 3804d1160e
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -141,6 +141,9 @@ exports.testTabPropertiesInNewWindow = function(test) {
exports.testTabPropertiesInSameWindow = function(test) {
test.waitUntilDone();
// Get current count of tabs so we know the index of the
// new tab, bug 893846
let tabCount = tabs.length;
let count = 0;
function onReadyOrLoad (tab) {
if (count++) {
@ -156,7 +159,7 @@ exports.testTabPropertiesInSameWindow = function(test) {
test.assertEqual(tab.url, url, "URL of the new tab matches");
test.assert(tab.favicon, "favicon of the new tab is not empty");
test.assertEqual(tab.style, null, "style of the new tab matches");
test.assertEqual(tab.index, 1, "index of the new tab matches");
test.assertEqual(tab.index, tabCount, "index of the new tab matches");
test.assertNotEqual(tab.getThumbnail(), null, "thumbnail of the new tab matches");
test.assertNotEqual(tab.id, null, "a tab object always has an id property.");
@ -167,7 +170,7 @@ exports.testTabPropertiesInSameWindow = function(test) {
test.assertEqual(tab.url, url, "URL of the new tab matches");
test.assert(tab.favicon, "favicon of the new tab is not empty");
test.assertEqual(tab.style, null, "style of the new tab matches");
test.assertEqual(tab.index, 1, "index of the new tab matches");
test.assertEqual(tab.index, tabCount, "index of the new tab matches");
test.assertNotEqual(tab.getThumbnail(), null, "thumbnail of the new tab matches");
test.assertNotEqual(tab.id, null, "a tab object always has an id property.");