|
1 <?xml version="1.0"?> |
|
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
5 |
|
6 |
|
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
|
8 <?xml-stylesheet href="gridsample.css" type="text/css"?> |
|
9 |
|
10 <!DOCTYPE window> |
|
11 |
|
12 |
|
13 <window orient="vertical" style="border: 2px solid green" |
|
14 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
|
15 |
|
16 <script> |
|
17 function flip(child) |
|
18 { |
|
19 var jump = child.getAttribute("jumpy"); |
|
20 if (jump != "true") |
|
21 child.setAttribute("jumpy","true"); |
|
22 else |
|
23 child.setAttribute("jumpy","false"); |
|
24 } |
|
25 |
|
26 </script> |
|
27 <hbox> |
|
28 <grid style="border: 2px solid yellow;"> |
|
29 <columns> |
|
30 </columns> |
|
31 |
|
32 <rows> |
|
33 <row> |
|
34 <button label="button" class="jumpy"/> |
|
35 <button label="button" class="jumpy"/> |
|
36 <button label="button" class="jumpy"/> |
|
37 <button label="button" class="jumpy"/> |
|
38 <button label="button" class="jumpy"/> |
|
39 </row> |
|
40 <row> |
|
41 <button label="button" class="jumpy"/> |
|
42 <button label="button" class="jumpy"/> |
|
43 <button label="button" class="jumpy"/> |
|
44 <button label="button" class="jumpy"/> |
|
45 <button label="button" class="jumpy"/> |
|
46 </row> |
|
47 <row> |
|
48 <button label="button" class="jumpy"/> |
|
49 <button label="button" class="jumpy"/> |
|
50 <button label="button" class="jumpy"/> |
|
51 <button label="button" class="jumpy"/> |
|
52 <button label="button" class="jumpy"/> |
|
53 </row> |
|
54 <row> |
|
55 <button label="button" class="jumpy"/> |
|
56 <button label="button" class="jumpy"/> |
|
57 <button label="button" class="jumpy"/> |
|
58 <button label="button" class="jumpy"/> |
|
59 <button label="button" class="jumpy"/> |
|
60 </row> |
|
61 <row> |
|
62 <button label="button" class="jumpy"/> |
|
63 <button label="button" class="jumpy"/> |
|
64 <button label="button" class="jumpy"/> |
|
65 <button label="button" class="jumpy"/> |
|
66 <button label="button" class="jumpy"/> |
|
67 </row> |
|
68 <row> |
|
69 <button label="button" class="jumpy"/> |
|
70 <button label="button" class="jumpy"/> |
|
71 <button label="button" class="jumpy"/> |
|
72 <button label="button" class="jumpy"/> |
|
73 <button label="button" class="jumpy"/> |
|
74 </row> |
|
75 |
|
76 </rows> |
|
77 </grid> |
|
78 <spacer style="border: 2px solid white;" flex="1"/> |
|
79 </hbox> |
|
80 <spacer style="border: 2px solid white;" flex="1"/> |
|
81 |
|
82 </window> |