<?xml version = "1.0"?>
<!-- 
	This XBL (Extensible Binding Language) file provides support for 
	Word-Wrap behavior in FireFox 2.0 (already supported in IE & Safari), 
	which is part of the CSS 3.0 spec.
	
	To use, add the following line to your CSS file:
		-moz-binding: url('xml/moz_wordwrap.xml#wordwrap');
-->
<bindings xmlns = "http://www.mozilla.org/xbl" xmlns:html = "http://www.w3.org/1999/xhtml">

<binding id = "wordwrap" applyauthorstyles = "false">

	<implementation>
		<constructor>
			//<![CDATA[
			
			var elem = this;
			
			doWrap();
			elem.addEventListener('overflow', doWrap, false);
			
			function doWrap()
			{
				var walker = document.createTreeWalker(elem, NodeFilter.SHOW_TEXT, null, false);
			 	while (walker.nextNode())
				{
					var node = walker.currentNode;
					node.nodeValue = node.nodeValue.split('').join(String.fromCharCode('8203'));
				}
			}
 

			//]]>
		</constructor>
	</implementation>

</binding>

</bindings>
<!-- Web2 -->