mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-13 23:17:57 +00:00
31 lines
953 B
Plaintext
31 lines
953 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
<!DOCTYPE window>
|
||
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||
|
title="XUL Grid Test">
|
||
|
<style xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
|
||
|
window { background: black; }
|
||
|
hbox { height: 100px; width: 100px; }
|
||
|
]]></style>
|
||
|
<hbox>
|
||
|
<grid>
|
||
|
<rows>
|
||
|
<row>
|
||
|
<hbox style="background: rgb(0, 102, 153)" />
|
||
|
<hbox style="background: rgb(0, 102, 153)" />
|
||
|
<hbox style="background: rgb(0, 255, 0)" />
|
||
|
</row>
|
||
|
<row>
|
||
|
<hbox style="background: rgb(0, 102, 153)" />
|
||
|
<hbox style="background: rgb(0, 102, 153)" />
|
||
|
<hbox style="background: rgb(0, 255, 0)" />
|
||
|
</row>
|
||
|
<row>
|
||
|
<hbox style="background: rgb(0, 0, 153)" />
|
||
|
<hbox style="background: rgb(0, 0, 153)" />
|
||
|
<hbox style="background: rgb(0, 0, 0)" />
|
||
|
</row>
|
||
|
</rows>
|
||
|
</grid>
|
||
|
</hbox>
|
||
|
</window>
|