tor-browser

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

update-style-block-ascii-case-insensitive.html (724B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="help" href="https://html.spec.whatwg.org/#update-a-style-block">
      4 <link rel="match" href="update-style-block-ascii-case-insensitive-ref.html">
      5 <meta name="assert" content="style@type values are ASCII case-insensitive">
      6 <style>
      7 p:after { font-weight: bold; }
      8 p:after { content: "FAIL"; color: red; }
      9 #c:after { content: "PASS"; color: green; }
     10 </style>
     11 <style type="text/css">#a:after { content: "PASS"; color: green; }</style>
     12 <style type="TeXt/CsS">#b:after { content: "PASS"; color: green; }</style>
     13 <style type="text/cſs">#c:after { content: "FAIL"; color: red; }</style>
     14 <p id="a">text/css treated as CSS?
     15 <p id="b">TeXt/CsS treated as CSS?
     16 <p id="c">text/cſs ignored?