blob: 9911601f86d687ea7afb37f8a7c9ca8a56c729b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?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://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://messenger/skin/browserRequest.css" type="text/css"?>
<!DOCTYPE window>
<window id="browserRequest"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
buttons=","
onload="loadRequestedUrl()"
onclose="reportUserClosed()"
title=""
width="800"
height="500"
orient="vertical">
<script src="chrome://messenger/content/browserRequest.js"/>
<keyset id="mainKeyset">
<key id="key_close" key="w" modifiers="accel" oncommand="cancelRequest()"/>
<key id="key_close2" keycode="VK_ESCAPE" oncommand="cancelRequest()"/>
</keyset>
<hbox id="header">
<hbox id="addressbox" flex="1" disabled="true">
<image id="security-button"/>
<description id="headerMessage"/>
</hbox>
</hbox>
<browser type="content" src="about:blank" id="requestFrame" flex="1"/>
</window>
|