https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f234546e7a085b82058d2ab0b43b3396e256405c authored by Ovidio Henriquez on 23 March 2018, 17:54:47 UTC
bluetooth: Impl. setNextWriteResponse (descriptor)
Tip revision: f234546
css3-modsel-d1.xml
<csstest def="NEGATED Dynamic handling of :empty" module="W3C Selectors" modulename="css3-modsel" number="d1" rev="1.1" date="3-march-2004" xmlns="http://www.example.org/css3tests">

<author>Ian Hickson</author>

<dynamic/>

<cssrules>
   #test { background: red; display: block; padding: 1em; }
   #test:not(:empty) { background: lime; }
</cssrules>

<code>

 <div xmlns="http://www.w3.org/1999/xhtml">

  <script type="text/javascript">
   <![CDATA[

    function test() {
      document.getElementById('test').appendChild(document.createTextNode('This line should be green.'));
    }

    window.setTimeout("test()", 100);
   ]]>
  </script>

  <p> The following bar should be green. </p>

  <div id="test"/>

 </div>

</code>
</csstest>
back to top