tor-browser

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

link-rel-attribute-ascii-case-insensitive.html (1001B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>link element rel is ASCII case-insensitive</title>
      4 <link rel="help" href="https://html.spec.whatwg.org/#the-link-element">
      5 <link rel="help" href="https://html.spec.whatwg.org/#attr-link-rel">
      6 <link rel="help" href="https://html.spec.whatwg.org/#linkTypes">
      7 <meta name="assert" content="link element's rel attribute is ASCII case-insensitive.">
      8 <link rel="mismatch" href="link-rel-attribute-ascii-case-insensitive-notref.html">
      9 
     10 <!-- Load sheet with a red background (rel attribute value is case-sensitive
     11     equal to "stylesheet") -->
     12 <link rel="stylesheet" href="stylesheet.css">
     13 
     14 <!-- Load sheet with white background (rel attribute value is ASCII
     15     case-insensitive equal to "stylesheet") -->
     16 <link rel="StyLeShEeT" href="style.css">
     17 
     18 <!-- Do not load sheet with a red background (rel attribute value is
     19     case-insensitive equal to "stylesheet") -->
     20 <link rel="ſtyleſheet" href="stylesheet.css">
     21 
     22 <p>Test passes if background is not red.</p>