mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
67 lines
1.7 KiB
XML
67 lines
1.7 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="resource:/res/samples/xul.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window>
|
|
|
|
<window style="height: 100%; width: 100%;"
|
|
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<box style="background-color: white; height: 100%; width: 100%">
|
|
<!-- scroll bar -->
|
|
<scrollbar align="vertical"/>
|
|
|
|
<spring style="width: 10px"/>
|
|
|
|
<!-- scroll bar with NeXt button order-->
|
|
<scrollbar align="vertical">
|
|
<slider flex="100%"/>
|
|
<scrollbarbutton class="decrement"/>
|
|
<scrollbarbutton class="increment"/>
|
|
</scrollbar>
|
|
|
|
<spring style="width: 10px"/>
|
|
|
|
<!-- fixed thumb and different increments -->
|
|
<scrollbar align="vertical" curpos="50" pageIncrement="20" increment="5" flex="100%">
|
|
<scrollbarbutton class="decrement"/>
|
|
<slider flex="100%">
|
|
<thumb value="this is it" flex="0%"/>
|
|
</slider>
|
|
<scrollbarbutton class="increment"/>
|
|
</scrollbar>
|
|
|
|
<spring style="width: 10px"/>
|
|
|
|
<!-- scrollbar with table in it -->
|
|
<scrollbar align="vertical" curpos="50" pageIncrement="20" increment="5" >
|
|
<scrollbarbutton class="decrement"/>
|
|
<slider flex="100%">
|
|
<html:button width="100%">
|
|
<html:table width="100%" border="1">
|
|
<html:tr>
|
|
<html:td bgcolor="blue">
|
|
cell1
|
|
</html:td>
|
|
<html:td bgcolor="red">
|
|
cell2
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td bgcolor="red">
|
|
cell4
|
|
</html:td>
|
|
<html:td bgcolor="blue">
|
|
cell5
|
|
</html:td>
|
|
</html:tr>
|
|
</html:table>
|
|
</html:button>
|
|
</slider>
|
|
<scrollbarbutton class="increment"/>
|
|
</scrollbar>
|
|
</box>
|
|
|
|
</window>
|
|
|