2009-01-18 02:28:19 -08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<bindings id="resizerBindings"
|
|
|
|
xmlns="http://www.mozilla.org/xbl">
|
|
|
|
|
|
|
|
<binding id="resizer">
|
|
|
|
<resources>
|
|
|
|
<stylesheet src="chrome://global/skin/resizer.css"/>
|
|
|
|
</resources>
|
2010-06-21 05:37:35 -07:00
|
|
|
<implementation>
|
|
|
|
<constructor>
|
|
|
|
<![CDATA[
|
|
|
|
// if the direction is rtl, set the rtl attribute so that the
|
|
|
|
// stylesheet can use this to make the cursor appear properly
|
|
|
|
var direction = window.getComputedStyle(this, "").direction;
|
|
|
|
if (direction == "rtl") {
|
|
|
|
this.setAttribute("rtl", "true");
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</constructor>
|
|
|
|
</implementation>
|
2009-01-18 02:28:19 -08:00
|
|
|
</binding>
|
|
|
|
|
|
|
|
</bindings>
|