tor-browser

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

attr-case-sensitivity-003.html (753B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>attr() with MathML attributes</title>
      4 <link rel="help" href="https://www.w3.org/TR/css-values-4/#attr-notation">
      5 <link rel="match" href="/css/css-content/attr-case-sensitivity-ref-003.html">
      6 <link rel="mismatch" href="/css/css-content/attr-case-sensitivity-ref-002.html">
      7 <meta name="assert" content="This test checks that MathML attribute names specified in the attr() function are case-sensitive.">
      8 <style>
      9    #casematch:before { content: attr(definitionURL); }
     10    #lowercase:before { content: attr(definitionurl); }
     11 </style>
     12 <!-- Test uses the fact that MathML attributes have a namespace -->
     13 <math id="casematch" definitionURL="casematch"></math>
     14 <math id="lowercase" definitionURL="lowercase"></math>