XmlSearch() Ignores CDATA Sections In ColdFusion XPath

<!---
	Create an XML document in which some of the text is
	created with inline text and some is created with the
	use of CDATA sections.
--->
<cfxml variable="xmlData">
 
	<girl>
		<name>
			Sarah Vivenzio
		</name>
		<age>
			27
		</age>
		<description>
			<![CDATA[
				She is totally hot! I mean way hot! Probably
				one of the more attractive people that I have
				ever had the pleasure of meeting.
			]]>
		</description>
	</girl>
 
</cfxml>
 
 
<!--- Dump out the ColdFusion XML document. --->
<cfdump
	var="#xmlData#"
	label="XmlData With CDATA Section"
	/>

For Cut-and-Paste