tor-browser

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

display-contents-svg-anchor-child.html (632B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Display: display:contents on SVG anchor child</title>
      4 <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
      5 <link rel="help" href="https://drafts.csswg.org/css-display/#unbox-svg">
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <svg>
      9  <a>
     10    <tspan style="display:contents;color:green">Text</tspan>
     11  </a>
     12  <text>
     13    <a>
     14      <tspan style="display:contents;color:green">Text</tspan>
     15    </a>
     16  </text>
     17 </svg>
     18 <script>
     19  test(() => {}, "Loading this page should not cause a crash.");
     20 </script>