tor-browser

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

inheritance.html (844B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Inheritance of CSS float properties</title>
      6 <link rel="author" title="Sam Weinig" href="mailto:sam@webkit.org">
      7 <link rel="help" href="https://drafts.csswg.org/css2/#propdef-float">
      8 <link rel="help" href="https://drafts.csswg.org/css2/#propdef-clear">
      9 <meta name="assert" content="Properties inherit or not according to the spec.">
     10 <meta name="assert" content="Properties have initial values according to the spec.">
     11 <script src="/resources/testharness.js"></script>
     12 <script src="/resources/testharnessreport.js"></script>
     13 <script src="/css/support/inheritance-testcommon.js"></script>
     14 </head>
     15 <body>
     16 <div id="container">
     17  <div id="target"></div>
     18 </div>
     19 <script>
     20 assert_not_inherited('float', 'none', 'left');
     21 assert_not_inherited('clear', 'none', 'both');
     22 </script>
     23 </body>
     24 </html>