mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D26296 --HG-- extra : moz-landing-system : lando
8 lines
271 B
JavaScript
8 lines
271 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
let tab = gBrowser.addTrustedTab("about:blank", {index: 10});
|
|
is(tab._tPos, 1, "added tab index should be 1");
|
|
gBrowser.removeTab(tab);
|
|
}
|