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

« back to all changes in this revision

Viewing changes to mozilla/extensions/inspector/resources/content/viewers/boxModel/boxModel.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"?>
 
2
 
 
3
<!DOCTYPE page [
 
4
  <!ENTITY % dtd1 SYSTEM "chrome://inspector/locale/inspector.dtd"> %dtd1;
 
5
  <!ENTITY % dtd2 SYSTEM "chrome://inspector/content/util.dtd"> %dtd2;
 
6
  <!ENTITY % dtd3 SYSTEM "chrome://inspector/locale/viewers/boxModel.dtd"> %dtd3;
 
7
]>
 
8
 
 
9
<?xml-stylesheet href="chrome://inspector/skin/viewers/boxModel/boxModel.css"?>
 
10
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
 
11
 
 
12
<page id="winBoxModel"
 
13
      orient="vertical"
 
14
      xmlns:html="http://www.w3.org/1999/xhtml"
 
15
      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 
16
  
 
17
  <script type="application/x-javascript" src="chrome://inspector/content/viewers/boxModel/boxModel.js"/>
 
18
  <script type="application/x-javascript" src="chrome://inspector/content/utils.js"/>
 
19
  <script type="application/x-javascript" src="chrome://inspector/content/jsutil/xpcom/XPCU.js"/>
 
20
  <script type="application/x-javascript" src="chrome://inspector/content/jsutil/events/ObserverManager.js"/>  
 
21
 
 
22
  <groupbox>
 
23
    <caption>
 
24
      <menulist id="mlStats" value="position" oncommand="viewer.showStatGroup(this.value)">
 
25
        <menupopup>
 
26
          <menuitem value="position" label="&boxPosition.label;"/>
 
27
          <menuitem value="dimension" label="&boxDimension.label;"/>
 
28
          <menuitem value="margin" label="&boxMargin.label;"/>
 
29
          <menuitem value="border" label="&boxBorder.label;"/>
 
30
          <menuitem value="padding" label="&boxPadding.label;"/>
 
31
        </menupopup>
 
32
      </menulist>
 
33
    </caption>
 
34
    <grid flex="1">
 
35
      <columns>
 
36
        <column/>
 
37
        <column flex="1" class="value-column"/>
 
38
        <column/>
 
39
        <column flex="1" class="value-column"/>
 
40
        <column/>
 
41
        <column flex="1" class="value-column"/>
 
42
      </columns>
 
43
      <rows>
 
44
        <row>
 
45
          <label id="txR1C1Label"/>
 
46
          <label id="txR1C1Value"/>
 
47
          <label id="txR1C2Label"/>
 
48
          <label id="txR1C2Value"/>
 
49
          <label id="txR1C3Label"/>
 
50
          <label id="txR1C3Value"/>
 
51
        </row>
 
52
        <row>
 
53
          <label id="txR2C1Label"/>
 
54
          <label id="txR2C1Value"/>
 
55
          <label id="txR2C2Label"/>
 
56
          <label id="txR2C2Value"/>
 
57
          <label id="txR2C3Label"/>
 
58
          <label id="txR2C3Value"/>
 
59
        </row>
 
60
      </rows>
 
61
    </grid>
 
62
  </groupbox>
 
63
 
 
64
</page>