Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <?xml version="1.0"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <!DOCTYPE dialog [
9 <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" >
10 %pippkiDTD;
11 ]>
14 <dialog id="ssl_warning" title="&chooseToken.title;"
15 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
16 style="width: 40em;"
17 buttons="accept,cancel"
18 ondialogaccept="return doOK();"
19 ondialogcancel="return doCancel();"
20 onload="onLoad();">
22 <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
24 <script type="application/javascript" src="chrome://pippki/content/pippki.js"/>
25 <script type="application/javascript" src="chrome://pippki/content/choosetoken.js"/>
27 <groupbox>
28 <description>&chooseToken.message1;</description>
29 <menulist id="tokens">
30 <menupopup/>
31 </menulist>
32 </groupbox>
34 </dialog>