css-flex-1.xhtml (638B)
1 <?xml version="1.0"?> 2 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 3 class="reftest-wait" 4 onload="tweak()"> 5 <style xmlns="http://www.w3.org/1999/xhtml"> 6 <![CDATA[ 7 panelview { 8 border: 1px solid black; 9 background: green; 10 display: flex; 11 height: 50px; 12 } 13 ]]> 14 </style> 15 <script> 16 <![CDATA[ 17 function tweak() { 18 var tweakMe = document.getElementById("tweakMe"); 19 tweakMe.style.width = "100px"; 20 document.documentElement.className = ""; 21 } 22 ]]> 23 </script> 24 <hbox> 25 <panelview id="tweakMe"></panelview> 26 </hbox> 27 </window>