tor-browser

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

embed-represent-nothing-01.html (625B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>HTML Test: The embed element without src and type attributes represents nothing</title>
      4 <link rel="author" title="Intel" href="http://www.intel.com">
      5 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-embed-element">
      6 <link rel="match" href="embed-represent-nothing-ref.html">
      7 <meta name="assert" content="Check if the embed element without src and type attributes represents nothing">
      8 <style>
      9  embed {
     10    background-color: red;
     11    height: 100px;
     12    width: 100px;
     13  }
     14 </style>
     15 <body>
     16  <p>Test passes if there is <strong>no red</strong>.</p>
     17  <embed>
     18 </body>