~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/xpfe/test/winopen.xul

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
 
2
<window 
 
3
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
 
4
orient="vertical"
 
5
    height="300"
 
6
    width="400"
 
7
    windowtype="opener:test"    
 
8
    onunload="restoreChromeURL();"
 
9
    onload="scheduleNextWindow();">
 
10
 
 
11
<script src="winopen.js" type="application/x-javascript"></script>
 
12
 
 
13
<groupbox orient="vertical">
 
14
<caption label="Window Opening Test"/>
 
15
<html>
 
16
This will open a series of browser windows, either "one at a
 
17
      time" or in a sequence of some form. When this test is complete 
 
18
      a final window will be opened which will report the overall results.
 
19
    </html>
 
20
<separator class="thick"/>
 
21
<grid>
 
22
<columns><column/><column/></columns>
 
23
<rows>
 
24
<row autostretch="never" valign="middle">
 
25
<text value="Index:"/>
 
26
<textbox id="formIndex" size="6" value=""/>
 
27
</row>
 
28
<row autostretch="never" valign="middle">
 
29
<text value="Time:"/>
 
30
<textbox id="formTime" size="6" value=""/>
 
31
<text value="msec"/>
 
32
</row>
 
33
</rows>
 
34
</grid>
 
35
<separator class="thick"/>
 
36
</groupbox>
 
37
 
 
38
<groupbox orient="vertical">
 
39
    <caption label="Results"/>
 
40
    <grid>
 
41
        <columns>
 
42
            <column/>
 
43
            <column/>
 
44
        </columns>
 
45
        <rows>
 
46
            <row autostretch="never" valign="middle">
 
47
                <text value="Times (ignoring the first):"/>
 
48
                <textbox id="formTimes" size="45" value=""/>
 
49
            </row>
 
50
            <row autostretch="never" valign="middle">
 
51
                <text value="Txul (median):"/>
 
52
                <hbox>
 
53
                    <textbox id="formMed" size="6" value=""/>
 
54
                    <spring/>
 
55
                    <button id="formAgain" onclick="tryAgain();" label="Try again" disabled="true"/>
 
56
                </hbox>
 
57
            </row>
 
58
            <row autostretch="never" valign="middle">
 
59
                <text value="Avg:"/>
 
60
                <hbox><textbox id="formAvg" size="6" value=""/></hbox>
 
61
            </row>
 
62
            <row autostretch="never" valign="middle">
 
63
                <text value="Min:"/>
 
64
                <hbox><textbox id="formMin" size="6" value=""/></hbox>
 
65
            </row>
 
66
            <row autostretch="never" valign="middle">
 
67
                <text value="Max:"/>
 
68
                <hbox><textbox id="formMax" size="6" value=""/></hbox>
 
69
            </row>
 
70
        </rows>
 
71
    </grid>
 
72
</groupbox>
 
73
 
 
74
</window>
 
75