mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
d95fdfbf99
--HG-- rename : toolkit/components/passwordmgr/test/authenticate.sjs => browser/base/content/test/authenticate.sjs
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
let url = "http://mochi.test:8888/browser/browser/base/content/test/test_wyciwyg_copying.html";
|
|
let tab = gBrowser.selectedTab = gBrowser.addTab(url);
|
|
tab.linkedBrowser.addEventListener("pageshow", function () {
|
|
let btn = content.document.getElementById("btn");
|
|
executeSoon(function () {
|
|
EventUtils.synthesizeMouseAtCenter(btn, {}, content);
|
|
let currentURL = gBrowser.currentURI.spec;
|
|
ok(/^wyciwyg:\/\//i.test(currentURL), currentURL + " is a wyciwyg URI");
|
|
|
|
executeSoon(function () {
|
|
testURLBarCopy(url, endTest);
|
|
});
|
|
});
|
|
}, false);
|
|
|
|
function endTest() {
|
|
while (gBrowser.tabs.length > 1)
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
}
|
|
|
|
function testURLBarCopy(targetValue, cb) {
|
|
info("Expecting copy of: " + targetValue);
|
|
waitForClipboard(targetValue, function () {
|
|
gURLBar.focus();
|
|
gURLBar.select();
|
|
|
|
goDoCommand("cmd_copy");
|
|
}, cb, cb);
|
|
}
|
|
}
|
|
|
|
|