tor-browser

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

container-inheritance.html (740B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Conditional Test: Inheritance of container-*</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-name">
      5 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-type">
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <script src="/css/support/inheritance-testcommon.js"></script>
      9 <script src="support/cq-testcommon.js"></script>
     10 <div id="container">
     11  <div id="target"></div>
     12 </div>
     13 <script>
     14 setup(() => assert_implements_size_container_queries());
     15 
     16 assert_not_inherited('container-name', 'none', 'foo');
     17 assert_not_inherited('container-type', 'normal', 'inline-size');
     18 </script>