tor-browser

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

outline-shorthand.html (718B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS UI Level 3: outline sets longhands</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-ui-3/#outline">
      7 <link rel="help" href="https://drafts.csswg.org/cssom/#serializing-css-values">
      8 <meta name="assert" content="outline supports the full grammar '<outline-color> || <outline> || <outline>'.">
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script src="/css/support/shorthand-testcommon.js"></script>
     12 </head>
     13 <body>
     14 <script>
     15 test_shorthand_value('outline', '3px ridge blue', {
     16  'outline-color': 'blue',
     17  'outline-style': 'ridge',
     18  'outline-width': '3px'
     19 });
     20 </script>
     21 </body>
     22 </html>