tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

parse-universal.html (567B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Selectors: Universal selector</title>
      4 <link rel="help" href="https://drafts.csswg.org/selectors-3/#universal-selector">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <script src="/css/support/parsing-testcommon.js"></script>
      8 <script>
      9  test_valid_selector('*');
     10  test_valid_selector('div :first-child',
     11      ['div *:first-child', 'div :first-child']);
     12  test_valid_selector('div *:first-child',
     13      ['div *:first-child', 'div :first-child']);
     14 </script>