- 
    Type:
Bug
 - 
    Resolution: Won't Fix
 - 
    Priority:
Normal
 - 
    None
 - 
    Affects Version/s: 6.0.0
 - 
    Component/s: Browser Issue
 - 
    Environment:
Tested on
IE 9
FF 8
Chrome 15
with ZK 6.0.0.FL.2011201 
- 
        None
 
This zul file below produces inconsistent results across browsers. IE and FF only show Menu 1 but Chrome shows Menu 2 as well.
<zk>
	<hlayout>
		<window title="Menu 1">
			<tree>
				<treechildren>
					<treeitem>
						<treerow>
							<treecell>test</treecell>
						</treerow>
					</treeitem>
				</treechildren>
			</tree>
		</window>
		<window title="Menu 2">
			<tree>
				<treechildren>
					<treeitem>
						<treerow>
							<treecell>test</treecell>
						</treerow>
					</treeitem>
				</treechildren>
			</tree>
		</window>
	</hlayout>
</zk>