Some more grid reftests from work on 413027.

This commit is contained in:
dbaron@dbaron.org 2008-03-21 21:49:51 -07:00
parent ee0a4f8a90
commit 59589b592c
3 changed files with 39 additions and 0 deletions

View File

@ -15,3 +15,4 @@
== not-full-row-leaf-direction.xul not-full-row-leaf-pack-ref.xhtml
== scrollable-columns.xul scrollable-columns-ref.xhtml
fails == scrollable-rows.xul scrollable-rows-ref.xhtml
== sizing-2d.xul sizing-2d-ref.xul

View File

@ -0,0 +1,12 @@
<?xml version="1.0"?>
<!DOCTYPE window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" align="start">
<hbox>
<box style="background:aqua; width: 50px; height: 100px" />
<box style="background:fuchsia; width: 100px; height: 100px" />
</hbox>
<hbox>
<box style="background:yellow; width: 50px; height: 75px" />
<box style="background:blue; width: 100px; height: 75px" />
</hbox>
</window>

View File

@ -0,0 +1,26 @@
<?xml version="1.0"?>
<!DOCTYPE window>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" align="start">
<grid>
<rows>
<row>
<box style="width: 25px; height: 25px" />
<box />
</row>
<row>
<box />
<box style="width: 75px; height: 75px" />
</row>
</rows>
<columns>
<column>
<box style="background: aqua" />
<box style="background: yellow; width: 50px; height: 50px" />
</column>
<column>
<box style="background: fuchsia; width: 100px; height: 100px" />
<box style="background: blue" />
</column>
</columns>
</grid>
</window>