gecko-dev/toolkit/content/aboutAbout.js
Nicolas Ouellet-Payeur b5b19652b2 Bug 462674 - URLBar: Autocomplete "about:" URLs r=mak
Pages that are whitelisted for displaying on about:about can be
autocompleted in the URL bar.

MozReview-Commit-ID: BYhWUImyiJH

Differential Revision: https://phabricator.services.mozilla.com/D3072

--HG--
extra : moz-landing-system : lando
2018-09-21 00:31:02 +00:00

23 lines
708 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
ChromeUtils.import("resource://gre/modules/AboutPagesUtils.jsm");
var gContainer;
window.onload = function() {
gContainer = document.getElementById("abouts");
AboutPagesUtils.visibleAboutUrls.forEach(createProtocolListing);
};
function createProtocolListing(aUrl) {
var li = document.createElement("li");
var link = document.createElement("a");
var text = document.createTextNode(aUrl);
link.href = aUrl;
link.appendChild(text);
li.appendChild(link);
gContainer.appendChild(li);
}