Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / browser / components / preferences / securityWarnings.xul
blob1f0ae4357986874d48b52e49908c578116cba6b2
1 <?xml version="1.0"?>
3 # -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
4 # ***** BEGIN LICENSE BLOCK *****
5 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
7 # The contents of this file are subject to the Mozilla Public License Version
8 # 1.1 (the "License"); you may not use this file except in compliance with
9 # the License. You may obtain a copy of the License at
10 # http://www.mozilla.org/MPL/
12 # Software distributed under the License is distributed on an "AS IS" basis,
13 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14 # for the specific language governing rights and limitations under the
15 # License.
17 # The Original Code is the Firefox Preferences System.
19 # The Initial Developer of the Original Code is
20 # Gavin Sharp.
21 # Portions created by the Initial Developer are Copyright (C) 2006
22 # the Initial Developer. All Rights Reserved.
24 # Contributor(s):
25 # Gavin Sharp <gavin@gavinsharp.com>
27 # Alternatively, the contents of this file may be used under the terms of
28 # either the GNU General Public License Version 2 or later (the "GPL"), or
29 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30 # in which case the provisions of the GPL or the LGPL are applicable instead
31 # of those above. If you wish to allow use of your version of this file only
32 # under the terms of either the GPL or the LGPL, and not to allow others to
33 # use your version of this file under the terms of the MPL, indicate your
34 # decision by deleting the provisions above and replace them with the notice
35 # and other provisions required by the GPL or the LGPL. If you do not delete
36 # the provisions above, a recipient may use your version of this file under
37 # the terms of any one of the MPL, the GPL or the LGPL.
39 # ***** END LICENSE BLOCK *****
41 <!DOCTYPE prefwindow SYSTEM "chrome://browser/locale/preferences/securityWarnings.dtd">
43 <?xml-stylesheet href="chrome://global/skin/"?>
45 <prefwindow id="SecurityWarnings" type="child"
46 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
47 title="&securityWarnings.title;"
48 dlgbuttons="accept,cancel">
50 <prefpane id="SecurityWarningsPane">
51 <preferences>
52 <preference id="security.warn_entering_secure"
53 name="security.warn_entering_secure"
54 type="bool"/>
55 <preference id="security.warn_entering_secure.show_once"
56 name="security.warn_entering_secure.show_once"
57 type="bool"/>
58 <preference id="security.warn_entering_weak"
59 name="security.warn_entering_weak"
60 type="bool"/>
61 <preference id="security.warn_entering_weak.show_once"
62 name="security.warn_entering_weak.show_once"
63 type="bool"/>
64 <preference id="security.warn_leaving_secure"
65 name="security.warn_leaving_secure"
66 type="bool"/>
67 <preference id="security.warn_leaving_secure.show_once"
68 name="security.warn_leaving_secure.show_once"
69 type="bool"/>
70 <preference id="security.warn_submit_insecure"
71 name="security.warn_submit_insecure"
72 type="bool"/>
73 <preference id="security.warn_submit_insecure.show_once"
74 name="security.warn_submit_insecure.show_once"
75 type="bool"/>
76 <preference id="security.warn_viewing_mixed"
77 name="security.warn_viewing_mixed"
78 type="bool"/>
79 <preference id="security.warn_viewing_mixed.show_once"
80 name="security.warn_viewing_mixed.show_once"
81 type="bool"/>
82 </preferences>
84 <script type="application/x-javascript" src="chrome://browser/content/preferences/securityWarnings.js"/>
86 <description value="&security.warn_when;"/>
87 <vbox class="indent">
88 <checkbox id="warn_entering_secure"
89 onsynctopreference="secWarningSyncTo(event);"
90 label="&security.warn_entering_secure.label;"
91 accesskey="&security.warn_entering_secure.accesskey;"
92 preference="security.warn_entering_secure"/>
93 <checkbox id="warn_entering_weak"
94 onsynctopreference="secWarningSyncTo(event);"
95 label="&security.warn_entering_weak.label;"
96 accesskey="&security.warn_entering_weak.accesskey;"
97 preference="security.warn_entering_weak"/>
98 <checkbox id="warn_leaving_secure"
99 onsynctopreference="secWarningSyncTo(event);"
100 label="&security.warn_leaving_secure.label;"
101 accesskey="&security.warn_leaving_secure.accesskey;"
102 preference="security.warn_leaving_secure"/>
103 <checkbox id="warn_submit_insecure"
104 onsynctopreference="secWarningSyncTo(event);"
105 label="&security.warn_submit_insecure.label;"
106 accesskey="&security.warn_submit_insecure.accesskey;"
107 preference="security.warn_submit_insecure"/>
108 <checkbox id="warn_viewing_mixed"
109 onsynctopreference="secWarningSyncTo(event);"
110 label="&security.warn_viewing_mixed.label;"
111 accesskey="&security.warn_viewing_mixed.accesskey;"
112 preference="security.warn_viewing_mixed"/>
113 </vbox>
114 </prefpane>
115 </prefwindow>