2009-01-18 02:28:19 -08:00
|
|
|
<?xml version="1.0"?>
|
2012-05-21 04:12:37 -07:00
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
|
2009-01-18 02:28:19 -08:00
|
|
|
|
|
|
|
<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[
|
2011-01-17 06:35:32 -08:00
|
|
|
// don't do this for viewport resizers; causes a crash related to
|
|
|
|
// bugs 563665 and 581536 otherwise
|
|
|
|
if (this.parentNode == this.ownerDocument.documentElement)
|
|
|
|
return;
|
|
|
|
|
2010-06-21 05:37:35 -07:00
|
|
|
// 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>
|