https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0cb962b995d06ee5a8e581277aa7906b039563af authored by Anne van Kesteren on 29 March 2018, 12:32:41 UTC
document.open() and the load event
Tip revision: 0cb962b
css3-modsel-96b.xml
<csstest def="Universal selector without declared namespace" module="W3C Selectors" modulename="css3-modsel" number="96b" rev="1.1" date="12-november-2001" xmlns:a="http://www.example.org/a" xmlns:b="http://www.example.org/b" xmlns="http://www.example.org/css3tests">

<author>Daniel Glazman</author>
<author>Ian Hickson</author>

<cssrules>@namespace a url(http://www.example.org/a);
@namespace b url(http://www.example.org/b);
div.green * { background-color : lime ! important }
div.test * { display : block ; margin-bottom : 1em }
div.test |* { background-color : red }</cssrules>

<code>
<div class="test" xmlns="http://www.w3.org/1999/xhtml">
 <p>This line should be unstyled.</p>
 <elementA xmlns="http://www.example.org/a">This line should be unstyled.</elementA>
 <elementB xmlns="http://www.example.org/b">This line should be unstyled.</elementB>
 <div class="green">
  <p xmlns="">This line should have a green background</p>
  <elementA xmlns="">This line should have a green background</elementA>
  <elementB xmlns="">This line should have a green background</elementB>
 </div>
</div>
</code>
</csstest>
back to top