Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <?xml version="1.0" encoding="utf-8"?>
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/. -->
7 <!DOCTYPE window []>
9 <?xml-stylesheet href="chrome://browser/skin/devtools/common.css"?>
10 <?xml-stylesheet href="chrome://browser/skin/devtools/eyedropper.css" type="text/css"?>
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>
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>
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>