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
|
"use strict";
var uniqueName = "bug 465215";
var uniqueValue1 = "as good as unique: " + Date.now();
var uniqueValue2 = "as good as unique: " + Math.random();
add_task(async function () {
// set a unique value on a new, blank tab
let tab1 = BrowserTestUtils.addTab(gBrowser, "about:blank");
await promiseBrowserLoaded(tab1.linkedBrowser);
ss.setCustomTabValue(tab1, uniqueName, uniqueValue1);
// duplicate the tab with that value
let tab2 = ss.duplicateTab(window, tab1);
await promiseTabRestored(tab2);
is(
ss.getCustomTabValue(tab2, uniqueName),
uniqueValue1,
"tab value was duplicated"
);
ss.setCustomTabValue(tab2, uniqueName, uniqueValue2);
isnot(
ss.getCustomTabValue(tab1, uniqueName),
uniqueValue2,
"tab values aren't sync'd"
);
// overwrite the tab with the value which should remove it
await promiseTabState(tab1, { entries: [] });
is(ss.getCustomTabValue(tab1, uniqueName), "", "tab value was cleared");
// clean up
gBrowser.removeTab(tab2);
gBrowser.removeTab(tab1);
});
|