tor-browser

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

inheritance.html (1122B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>Inheritance of CSS Animations properties</title>
      6 <link rel="help" href="https://drafts.csswg.org/css-animations/#property-index">
      7 <meta name="assert" content="Properties inherit or not according to the spec.">
      8 <meta name="assert" content="Properties have initial values 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_not_inherited('animation-delay', '0s', '2s');
     19 assert_not_inherited('animation-direction', 'normal', 'reverse');
     20 assert_not_inherited('animation-duration', '0s', '3s');
     21 assert_not_inherited('animation-fill-mode', 'none', 'forwards');
     22 assert_not_inherited('animation-iteration-count', '1', '4');
     23 assert_not_inherited('animation-name', 'none', 'spinner');
     24 assert_not_inherited('animation-play-state', 'running', 'paused');
     25 assert_not_inherited('animation-timing-function', 'ease', 'linear');
     26 </script>
     27 </body>
     28 </html>