ColdFusion CALLER Scope Dependent On Invoking Parent, Not Markup Parent

<!--- Import tag libraries. --->
<cfimport taglib="./" prefix="tag" />
 
<!--- Execute the nested tags. --->
<tag:parent>
	<tag:child />
</tag:parent>
 
 
<!---
	Dump out the local variables scope to see how
	it has been affected by the ColdFusion custom
	tag execution.
--->
<cfdump
	var="#VARIABLES#"
	label="Top Level VARIABLES Scope (post tag execution)"
	/>

For Cut-and-Paste