browser/devtools/eyedropper/eyedropper.xul

branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
equal deleted inserted replaced
-1:000000000000 0:4ff790ffc852
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
4 - License, v. 2.0. If a copy of the MPL was not distributed with this
5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6
7 <!DOCTYPE window []>
8
9 <?xml-stylesheet href="chrome://browser/skin/devtools/common.css"?>
10 <?xml-stylesheet href="chrome://browser/skin/devtools/eyedropper.css" type="text/css"?>
11
12 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
13 <commandset id="eyedropper-commandset">
14 <command id="eyedropper-cmd-close"
15 oncommand="void(0);"/>
16 <command id="eyedropper-cmd-copy"
17 oncommand="void(0);"/>
18 </commandset>
19
20 <keyset id="eyedropper-keyset">
21 <key id="eyedropper-key-escape"
22 keycode="VK_ESCAPE"
23 command="eyedropper-cmd-close"/>
24 <key id="eyedropper-key-enter"
25 keycode="VK_RETURN"
26 command="eyedropper-cmd-copy"/>
27 </keyset>
28
29 <box id="canvas-overflow">
30 <canvas id="canvas" xmlns="http://www.w3.org/1999/xhtml" width="96" height="96">
31 </canvas>
32 </box>
33 <hbox id="color-value-container">
34 <hbox id="color-value-box">
35 <box id="color-preview">
36 </box>
37 <label id="color-value" class="devtools-monospace">
38 </label>
39 </hbox>
40 </hbox>
41 </window>

mercurial