tor-browser

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

text-box-edge-valid.html (568B)


      1 <!DOCTYPE html>
      2 <title>text-box-edge parses valid values according to its grammar</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-inline-3/#text-edges">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <script src="/css/support/parsing-testcommon.js"></script>
      7 <script src="values.js"></script>
      8 
      9 <script>
     10 for (let value of text_box_edge_values) {
     11  if (Array.isArray(value)) {
     12    test_valid_value('text-box-edge', ...value);
     13  } else {
     14    test_valid_value('text-box-edge', value);
     15  }
     16 }
     17 </script>