Files
i2p.itoopie/apps/i2pbote/WebContent/moz_fix2.xml
2009-11-16 07:28:14 +00:00

22 lines
798 B
XML

<?xml version="1.0"?>
<bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml">
<binding id="ellipsis" applyauthorstyles="false">
<implementation>
<constructor><![CDATA[
(function(block){
setTimeout(function(){
block.style.mozBinding = '';
var t = document.createElement('DIV');
block.appendChild(t);
block.appendChild(document.createElement('DIV'));
while (block.firstChild != t)
t.appendChild(block.firstChild);
block.className = block.className + ' moz-ellipsis';
}, 0);
})(this);
]]></constructor>
</implementation>
</binding>
</bindings>