mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
68 lines
2.5 KiB
JavaScript
68 lines
2.5 KiB
JavaScript
'use strict';
|
|
|
|
const { getTabs } = require('sdk/tabs/utils');
|
|
const { isGlobalPBSupported, isWindowPBSupported, isTabPBSupported } = require('sdk/private-browsing/utils');
|
|
const { browserWindows } = require('sdk/windows');
|
|
const tabs = require('sdk/tabs');
|
|
const { pb } = require('./private-browsing/helper');
|
|
const { isPrivate } = require('sdk/private-browsing');
|
|
const { openTab, closeTab, getTabContentWindow, getOwnerWindow } = require('sdk/tabs/utils');
|
|
const { open, close } = require('sdk/window/helpers');
|
|
const { windows } = require('sdk/window/utils');
|
|
const { getMostRecentBrowserWindow } = require('sdk/window/utils');
|
|
const { fromIterator } = require('sdk/util/array');
|
|
|
|
if (isWindowPBSupported) {
|
|
exports.testGetTabs = function(assert, done) {
|
|
let tabCount = getTabs().length;
|
|
let windowCount = browserWindows.length;
|
|
|
|
open(null, {
|
|
features: {
|
|
private: true,
|
|
toolbar: true,
|
|
chrome: true
|
|
}
|
|
}).then(function(window) {
|
|
assert.ok(isPrivate(window), 'new tab is private');
|
|
|
|
assert.equal(getTabs().length, tabCount, 'there are no new tabs found');
|
|
getTabs().forEach(function(tab) {
|
|
assert.equal(isPrivate(tab), false, 'all found tabs are not private');
|
|
assert.equal(isPrivate(getOwnerWindow(tab)), false, 'all found tabs are not private');
|
|
assert.equal(isPrivate(getTabContentWindow(tab)), false, 'all found tabs are not private');
|
|
});
|
|
|
|
assert.equal(browserWindows.length, windowCount, 'there are no new windows found');
|
|
fromIterator(browserWindows).forEach(function(window) {
|
|
assert.equal(isPrivate(window), false, 'all found windows are not private');
|
|
});
|
|
|
|
assert.equal(windows(null, {includePrivate: true}).length, 2, 'there are really two windows');
|
|
|
|
close(window).then(done);
|
|
});
|
|
};
|
|
}
|
|
else if (isTabPBSupported) {
|
|
exports.testGetTabs = function(assert, done) {
|
|
let startTabCount = getTabs().length;
|
|
let tab = openTab(getMostRecentBrowserWindow(), 'about:blank', {
|
|
isPrivate: true
|
|
});
|
|
|
|
assert.ok(isPrivate(getTabContentWindow(tab)), 'new tab is private');
|
|
let utils_tabs = getTabs();
|
|
assert.equal(utils_tabs.length, startTabCount + 1,
|
|
'there are two tabs found');
|
|
assert.equal(utils_tabs[utils_tabs.length-1], tab,
|
|
'the last tab is the opened tab');
|
|
assert.equal(browserWindows.length, 1, 'there is only one window');
|
|
closeTab(tab);
|
|
|
|
done();
|
|
};
|
|
}
|
|
|
|
require('test').run(exports);
|