tor-browser

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

list-style-shorthand.sub.html (744B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Lists: list-style sets longhands</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-lists-3/#propdef-list-style">
      7 <meta name="assert" content="list-style supports the full grammar '<'list-style-position'> || <'list-style-image'> || <'list-style-type'>'.">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/css/support/shorthand-testcommon.js"></script>
     11 </head>
     12 <body>
     13 <script>
     14 test_shorthand_value('list-style', 'square url("https://{{host}}/") inside', {
     15  'list-style-position': 'inside',
     16  'list-style-image': 'url("https://{{host}}/")',
     17  'list-style-type': 'square'
     18 });
     19 </script>
     20 </body>
     21 </html>