In XHTML 1.0 using the xml:space attribute in a tag is valid, but in XHTML 1.1 it is not valid (using the same markup).
I can't find it in the docs... Anyone can confirm it? Why it has been removed? Replaced by something else?
Sample to validate:
<script type="text/javascript" xml:space="preserve">
// <![CDATA[
alert('foo');
alert('bar');
// ]]>
</script>