<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Transforms>
<!--
This file contains transform rules that transform once css rule to a set of other css rules.
used in specifying vendor prefix transcode rules now.
-->

	<Transform property="box-sizing" >
		<For value="content-box">
			<To target-vendor="all" property="-webkit-box-sizing" value="content-box"/>
			<!--The above vendor prefix applies to webkit. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
			<To target-vendor="all" property="-moz-box-sizing" value="content-box"/>
			<!--The above vendor prefix applies to firefox. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
		</For>
		<For value="border-box">
			<To target-vendor="all" property="-webkit-box-sizing" value="border-box"/>
			<!--The above vendor prefix applies to webkit. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
			<To target-vendor="all" property="-moz-box-sizing" value="border-box"/>
			<!--The above vendor prefix applies to firefox. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
		</For>
		<For value="inherit">
			<To target-vendor="all" property="-webkit-box-sizing" value="inherit"/>
			<!--The above vendor prefix applies to webkit. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
			<To target-vendor="all" property="-moz-box-sizing" value="inherit"/>
			<!--The above vendor prefix applies to firefox. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
		</For>
		<For value="$delete-disable$">
			<To target-vendor="all" property="-webkit-box-sizing" value=""/>
			<!--The above vendor prefix applies to webkit. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
			<To target-vendor="all" property="-moz-box-sizing" value=""/>
			<!--The above vendor prefix applies to firefox. But we do not want to hook this to preferences. All vendor prefix will be output -pdm.-->
		</For>
	</Transform>
	
</Transforms>
