home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / phoenx05.zip / phoenix / res / samples / scrollbarTest2.xul < prev    next >
Extensible Markup Language  |  2002-12-10  |  560b  |  20 lines

  1. <?xml version="1.0"?> 
  2. <?xml-stylesheet href="resource:/res/samples/xul.css" type="text/css"?> 
  3.  
  4. <!DOCTYPE window> 
  5.  
  6. <window style="height: 100%; width: 100%;" 
  7.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
  8. <hbox style="width: 100%; height: 100%">
  9.    <scrollbar orient="vertical"/>
  10.    <vbox flex="100%">
  11.        <scrollbar orient="horizontal"/>
  12.        <spacer flex="100%" style="background-color: white"/>
  13.        <scrollbar orient="horizontal"/>      
  14.    </vbox>
  15.    <scrollbar orient="vertical"/>
  16. </hbox>
  17.  
  18. </window>
  19.  
  20.