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

« back to all changes in this revision

Viewing changes to mozilla/layout/xul/base/src/grid/examples/scrollingcolumns.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
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
 
4
 
 
5
<!DOCTYPE window> 
 
6
 
 
7
 
 
8
<window orient="vertical"
 
9
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
 
10
 
 
11
  <hbox flex="1">
 
12
    <grid style="border: 2px solid red" flex="1">
 
13
 
 
14
       <rows>
 
15
                                <row flex="1"/>
 
16
                                <row flex="1"/>
 
17
                                <row flex="1"/>
 
18
           </rows>
 
19
       <columns>
 
20
 
 
21
                   <column>
 
22
                          <button label="left"/>
 
23
                          <button label="left"/>
 
24
                          <button label="left"/>
 
25
                   </column>
 
26
 
 
27
         <columns flex="1" style="min-width: 1px; overflow: auto; background-color: green">
 
28
           <column>
 
29
                          <button label="cell1"/>
 
30
                          <button label="cell1"/>
 
31
                          <button label="cell1"/>
 
32
               </column>
 
33
           <column>
 
34
                          <button label="cell2"/>
 
35
                          <button label="cell2"/>
 
36
                          <button label="cell2"/>
 
37
               </column>
 
38
           <column>
 
39
                          <button label="cell3"/>
 
40
                          <button label="cell3"/>
 
41
                          <button label="cell3"/>
 
42
               </column>
 
43
           <column>
 
44
                          <button label="cell4"/>
 
45
                          <button label="cell4"/>
 
46
                          <button label="cell4"/>
 
47
               </column>
 
48
           <column>
 
49
                          <button label="cell5"/>
 
50
                          <button label="cell5"/>
 
51
                          <button label="cell5"/>
 
52
               </column>
 
53
           <column>
 
54
                          <button label="cell6"/>
 
55
                          <button label="cell6"/>
 
56
                          <button label="cell6"/>
 
57
               </column>
 
58
           <column>
 
59
                          <button label="cell7"/>
 
60
                          <button label="cell7"/>
 
61
                          <button label="cell7"/>
 
62
               </column>
 
63
           </columns>
 
64
                   <column>
 
65
                          <button label="right"/>
 
66
                          <button label="right"/>
 
67
                          <button label="right"/>
 
68
                   </column>
 
69
 
 
70
         </columns>
 
71
 
 
72
        </grid>
 
73
        <spacer width="100"/>
 
74
  </hbox>
 
75
  <spacer height="100"/>
 
76
</window>