1<documentation title="CSSLint">
2    <standard>
3    <![CDATA[
4    All css files should pass the basic csslint tests.
5    ]]>
6    </standard>
7    <code_comparison>
8        <code title="Valid: Valid CSS Syntax is used.">
9        <![CDATA[
10.foo: { width: 100<em></em>%; }
11        ]]>
12        </code>
13        <code title="Invalid: The CSS has a typo in it.">
14        <![CDATA[
15.foo: { width: 100<em> </em>%; }
16        ]]>
17        </code>
18    </code_comparison>
19</documentation>
20