mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
30 lines
848 B
XML
30 lines
848 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[
|
|
// don't do this for viewport resizers; causes a crash related to
|
|
// bugs 563665 and 581536 otherwise
|
|
if (this.parentNode == this.ownerDocument.documentElement)
|
|
return;
|
|
|
|
// 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>
|