summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/tabs/browser_positional_attributes.js
blob: 619c5cc517f8df20d8c83bcd36d9a5fc20895efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

var tabs = [];

function addTab(aURL) {
  tabs.push(
    BrowserTestUtils.addTab(gBrowser, aURL, {
      skipAnimation: true,
    })
  );
}

function switchTab(index) {
  return BrowserTestUtils.switchTab(gBrowser, gBrowser.tabs[index]);
}

function testAttrib(tabIndex, attrib, expected) {
  is(
    gBrowser.tabs[tabIndex].hasAttribute(attrib),
    expected,
    `tab #${tabIndex} should${
      expected ? "" : "n't"
    } have the ${attrib} attribute`
  );
}

add_setup(async function () {
  is(gBrowser.tabs.length, 1, "one tab is open initially");

  addTab("http://mochi.test:8888/#0");
  addTab("http://mochi.test:8888/#1");
  addTab("http://mochi.test:8888/#2");
  addTab("http://mochi.test:8888/#3");

  is(gBrowser.tabs.length, 5, "five tabs are open after setup");
});

// Add several new tabs in sequence, hiding some, to ensure that the
// correct attributes get set
add_task(async function test() {
  testAttrib(0, "visuallyselected", true);

  await switchTab(2);

  testAttrib(2, "visuallyselected", true);
});

add_task(async function test_pinning() {
  await switchTab(3);
  testAttrib(3, "visuallyselected", true);
  // Causes gBrowser.tabs to change indices
  gBrowser.pinTab(gBrowser.tabs[3]);
  testAttrib(0, "visuallyselected", true);
});

add_task(function cleanup() {
  tabs.forEach(gBrowser.removeTab, gBrowser);
});