gecko-dev/toolkit/content/widgets/resizer.xml

25 строки
644 B
XML

<?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>
<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>
</binding>
</bindings>