mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
644 B
XML
25 lines
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>
|