https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f18c12095bf8bfcb73c0ab563b5c6f80de8656ef authored by Yngve N. Pettersen on 04 April 2018, 12:48:36 UTC
Fixed CRLFs in source files to LFs
Tip revision: f18c120
css3-modsel-183.xml
<csstest def="Syntax and parsing of class selectors" module="W3C Selectors" modulename="css3-modsel" number="183" rev="1.0" date="24-april-2004" xmlns="http://www.example.org/css3tests">

<author>Ian Hickson</author>

<cssrules>
p { color: green; }
..test { background: red; color: yellow; }
.foo..quux { background: red; color: yellow; }
.bar. { background: red; color: yellow; }
</cssrules>

<code>
<p xmlns="http://www.w3.org/1999/xhtml" class="test">This text should be green.</p>
<p xmlns="http://www.w3.org/1999/xhtml" class=".test">This text should be green.</p>
<p xmlns="http://www.w3.org/1999/xhtml" class="foo">This text should be green.</p>
<p xmlns="http://www.w3.org/1999/xhtml" class="foo quux">This text should be green.</p>
<p xmlns="http://www.w3.org/1999/xhtml" class="foo  quux">This text should be green.</p>
<p xmlns="http://www.w3.org/1999/xhtml" class=" bar ">This text should be green.</p>
</code>

</csstest>
back to top