diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-10 02:51:36 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-10 02:51:36 -0500 |
commit | 37d5300335d81cecbecc99812747a657588c63eb (patch) | |
tree | 765efa3b6a56bb715d9813a8697473e120436278 /toolkit/mozapps/webextensions/content/xpinstallConfirm.xul | |
parent | b2bdac20c02b12f2057b9ef70b0a946113a00e00 (diff) | |
parent | 4fb11cd5966461bccc3ed1599b808237be6b0de9 (diff) | |
download | UXP-37d5300335d81cecbecc99812747a657588c63eb.tar UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.gz UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.lz UXP-37d5300335d81cecbecc99812747a657588c63eb.tar.xz UXP-37d5300335d81cecbecc99812747a657588c63eb.zip |
Merge branch 'ext-work'
Diffstat (limited to 'toolkit/mozapps/webextensions/content/xpinstallConfirm.xul')
-rw-r--r-- | toolkit/mozapps/webextensions/content/xpinstallConfirm.xul | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/toolkit/mozapps/webextensions/content/xpinstallConfirm.xul b/toolkit/mozapps/webextensions/content/xpinstallConfirm.xul new file mode 100644 index 000000000..f1c29eb73 --- /dev/null +++ b/toolkit/mozapps/webextensions/content/xpinstallConfirm.xul @@ -0,0 +1,37 @@ +<?xml version="1.0"?> + +<!-- 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/. --> + +<?xml-stylesheet href="chrome://mozapps/content/xpinstall/xpinstallConfirm.css" type="text/css"?> +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> +<?xml-stylesheet href="chrome://mozapps/skin/xpinstall/xpinstallConfirm.css" type="text/css"?> + +<!DOCTYPE dialog SYSTEM "chrome://mozapps/locale/xpinstall/xpinstallConfirm.dtd"> + +<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + id="xpinstallConfirm" title="&dialog.title;" style="&dialog.style;" + windowtype="Addons:Install" + onload="XPInstallConfirm.init()" + ondialogaccept="return XPInstallConfirm.onOK();" + ondialogcancel="return XPInstallConfirm.onCancel();"> + + <script src="chrome://mozapps/content/xpinstall/xpinstallConfirm.js" type="application/javascript"/> + + <stringbundle id="xpinstallConfirmStrings" + src="chrome://mozapps/locale/xpinstall/xpinstallConfirm.properties"/> + + <vbox flex="1" id="dialogContentBox"> + <hbox id="xpinstallheader" align="start"> + <image class="alert-icon"/> + <vbox flex="1"> + <description class="warning">&warningPrimary.label;</description> + <description>&warningSecondary.label;</description> + </vbox> + </hbox> + <label id="itemWarningIntro"/> + <vbox id="itemList" class="listbox" flex="1" style="overflow: auto;"/> + </vbox> + +</dialog> |