tor-browser

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

inheritance.html (701B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Inheritance of CSS Mobile Text Size Adjustment properties</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-size-adjust/#property-index">
      7 <meta name="assert" content="text-size-adjust inherits according to the spec.">
      8 <meta name="assert" content="text-size-adjust has initial value according to the spec.">
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script src="/css/support/inheritance-testcommon.js"></script>
     12 </head>
     13 <body>
     14 <div id="container">
     15 <div id="target"></div>
     16 </div>
     17 <script>
     18 assert_inherited('text-size-adjust', 'auto', '10%');
     19 </script>
     20 </body>
     21 </html>