https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4f010356f8ff7262480ca750e1a851847d3cb868 authored by Ovidio Henriquez on 05 April 2018, 20:42:03 UTC
bluetooth: SetNextUnsubscribeFromNotifications
Tip revision: 4f01035
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