tor-browser

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

stylesheet-title-001.html (902B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: title attribute in stylesheets not in the document tree is ignored</title>
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="help" href="https://drafts.csswg.org/cssom/#preferred-css-style-sheet-set-name">
      6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#attr-style-title">
      7 <link rel="help" href="https://github.com/w3c/webcomponents/issues/535">
      8 <link rel="match" href="reference/green-box.html">
      9 <p>Test passes if you see a single 100px by 100px green box below.</p>
     10 <div id="host"></div>
     11 <script>
     12  host.attachShadow({ mode: "open" }).innerHTML = `
     13    <style>
     14      div { width: 100px; height: 100px; }
     15    </style>
     16    <style title="Foo">
     17      div { background: purple }
     18    </style>
     19    <style title="Bar">
     20      div { background: green }
     21    </style>
     22    <div></div>
     23  `;
     24 </script>