forked from mirrors/gecko-dev
This patch also includes necessary JS changes to support this. Most commonly, the dialog was accessed with document.documentElement, which needed to be changed now that the dialog is not the top level element. Differential Revision: https://phabricator.services.mozilla.com/D52411 --HG-- extra : moz-landing-system : lando
19 lines
811 B
JavaScript
19 lines
811 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/. */
|
|
|
|
/* import-globals-from ../../../toolkit/content/preferencesBindings.js */
|
|
|
|
document
|
|
.getElementById("ColorsDialog")
|
|
.addEventListener("dialoghelp", window.top.openPrefsHelp);
|
|
|
|
Preferences.addAll([
|
|
{ id: "browser.display.document_color_use", type: "int" },
|
|
{ id: "browser.anchor_color", type: "string" },
|
|
{ id: "browser.visited_color", type: "string" },
|
|
{ id: "browser.underline_anchors", type: "bool" },
|
|
{ id: "browser.display.foreground_color", type: "string" },
|
|
{ id: "browser.display.background_color", type: "string" },
|
|
{ id: "browser.display.use_system_colors", type: "bool" },
|
|
]);
|