summaryrefslogtreecommitdiff
path: root/data/extensions/https-everywhere@eff.org/chrome/content/ruleset-tests-status.xul
blob: 0efcd5d9a0722d3d856f11f1c2f787f14dae00fd (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
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="ruleset-tests-status.css" type="text/css"?>
<!DOCTYPE window SYSTEM "chrome://https-everywhere/locale/https-everywhere.dtd">
<window id="ruleset-tests-status" 
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
    xmlns:html="http://www.w3.org/1999/xhtml" 
    title="&https-everywhere.ruleset-tests.status_title;" 
    >
    
    <script type="application/x-javascript" src="ruleset-tests-status.js" />

    <commandgroup>
        <command id="cancel" oncommand="cancel();" />
        <command id="start" oncommand="start();" />
    </commandgroup>

    <html:div id="wrapper"> 
        <vbox flex="1" style="width:100%">
            <label id="progress-bar-label" value="Click Start to start the tests"></label>
            
            <spacer flex="1"/>
            
            <progressmeter id="progress-bar" mode="determined" value="0" />
            
            <spacer flex="1"/>

            <textbox id="log" multiline="true" readonly="true" value="" />
            
            <spacer flex="1"/>

            <button 
                id="cancel-button" 
                label="&https-everywhere.ruleset-tests.status_cancel_button;" 
                command="cancel" />

            <button 
                id="start-button" 
                label="&https-everywhere.ruleset-tests.status_start_button;" 
                command="start" />
        </vbox>
    </html:div>
</window>