1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/xul/grid/reftests/not-full-basic.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 1.4 +<?xml version="1.0"?> 1.5 +<!DOCTYPE window> 1.6 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.7 + title="XUL Grid Test"> 1.8 + <style xmlns="http://www.w3.org/1999/xhtml"><![CDATA[ 1.9 + window { background: black; } 1.10 + hbox { height: 100px; width: 100px; } 1.11 + ]]></style> 1.12 + <grid flex="1"> 1.13 + <columns> 1.14 + <column style="background: rgb(0, 255, 0)"> 1.15 + <hbox /> 1.16 + <hbox /> 1.17 + <hbox /> 1.18 + </column> 1.19 + <column> 1.20 + <hbox style="background: rgb(0, 255, 0)" /> 1.21 + <hbox style="background: rgb(0, 255, 0)" /> 1.22 + <hbox style="background: rgb(0, 255, 0)" /> 1.23 + </column> 1.24 + <column> 1.25 + <hbox /> 1.26 + <hbox /> 1.27 + <hbox /> 1.28 + </column> 1.29 + </columns> 1.30 + <rows> 1.31 + <row style="background: rgba(0, 0, 255, 0.6)"> 1.32 + <hbox /> 1.33 + <hbox /> 1.34 + <hbox /> 1.35 + </row> 1.36 + <row> 1.37 + <hbox style="background: rgba(0, 0, 255, 0.6)" /> 1.38 + <hbox style="background: rgba(0, 0, 255, 0.6)" /> 1.39 + <hbox style="background: rgba(0, 0, 255, 0.6)" /> 1.40 + </row> 1.41 + <row> 1.42 + <hbox /> 1.43 + <hbox /> 1.44 + <hbox /> 1.45 + </row> 1.46 + </rows> 1.47 + </grid> 1.48 +</window>