forked from mirrors/gecko-dev
31 lines
802 B
JavaScript
31 lines
802 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
/**
|
|
* Tests if copying a request's url works.
|
|
*/
|
|
|
|
add_task(function* () {
|
|
let { tab, monitor } = yield initNetMonitor(CUSTOM_GET_URL);
|
|
info("Starting test... ");
|
|
|
|
let { NetMonitorView } = monitor.panelWin;
|
|
let { RequestsMenu } = NetMonitorView;
|
|
|
|
let wait = waitForNetworkEvents(monitor, 1);
|
|
yield ContentTask.spawn(tab.linkedBrowser, {}, function* () {
|
|
content.wrappedJSObject.performRequests(1);
|
|
});
|
|
yield wait;
|
|
|
|
let requestItem = RequestsMenu.getItemAtIndex(0);
|
|
RequestsMenu.selectedItem = requestItem;
|
|
|
|
yield waitForClipboardPromise(function setup() {
|
|
RequestsMenu.contextMenu.copyUrl();
|
|
}, requestItem.url);
|
|
|
|
yield teardown(monitor);
|
|
});
|