<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" ?>

<window title="fenetre principale"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
<script type="application/x-javascript">
<![CDATA[

var foo = 'hello world !';

]]>
</script>
<hbox><description>Ceci est la fenêtre principale, et le contenu du dessous, celui d'une fenêtre 
fille affichée via un iframe</description>
<button label="valeur de foo dans parent" oncommand="alert(foo)" />

</hbox>
<iframe src="fils.xul" />

</window>